Yoshi Jäger
Yoshi Jäger
@kajoseph Thank you for dealing with the issues from my other PR. Can you please take a look into this one? I think it's quite a serious flaw and this...
@ivanpopelyshev Very good response. Helped me tremendously.
Vibration works on my iOS 13 device. It's weird that they require the first argument, but the documentation also says that the default is 400ms
In my case the emulator was just not able to connect to the bundler. Make sure `adb` is installed and the path variable is set up correctly. If needed, run...
I don't know why `objection` does not pause the execution. Maybe it's an issue on my end. `--no-pause` is not useful if it already does that behavior by default. However,...
Everything works fine for me, except when I try to call .reset() on an navigation instance. Example: ``` // Reset back to root navigation.reset({ index: 0, routes: [{ name: 'RootScreen',...
Just create your own hook that checks whether the object really changed?
I second this. We might approach it with the following mapping: `onPress`: `onClick` `onPressIn`: `onMouseDown` `onPressOut`: `onMouseUp` `onStartShouldSetResponder`: `onFocus` `onResponderTerminationRequest`: null (does not exist) `onResponderGrant`: null (does not exist) `onResponderMove`:...
## Help needed The call to the backup API is causing a segfault, currently. I suppose this line is causing the issue: https://github.com/SmartArray/node-sqlite3/blob/401937943af31cd6e7844deb124e315df4c58400/src/backup.cc#L161 I could not figure out why the...
Fixed all memory issues, tests and added typescript declarations. Integrated into production environment of a project. Seems to work well.