Lukas
Lukas
I am still having the same issue when connecting to the database (first action) when using Debian 8 x64.
I am using NodeJS 4.2.1 and mariasql the version 0.2.1
Below you can see my code for connecting to the database: ``` dbConnection = new DatabaseClient(); dbConnection.connect ({ host: connectionProperties.Host, user: connectionProperties.Username, password: connectionProperties.Password, db: connectionProperties.Database }); dbConnection.on("ready", function() {...
Hi, Unfortunately this component was written in 2015 and ReactNative changed has changed drastically since then. Furthermore, I don't have an Apple computer at hand, so I can't make any...
Thanks for your compliment! I directly pass on the options to the slider. So if your slider supports a custom thumb it shouldn't be an issue. So if your React...
The keys are simply passed through. My code looks the following: this.onSliderValueChanged(newValue)} minimumValue={0} maximumValue={100} value={actualValue} {...this.props}/> `{...this.props}` passes all overgiven parameters through. See the `...` operator. Have a nice day!...