Zachary Dixon
Zachary Dixon
Hi, I'm getting this on iphone 8 simulator. I'm using create-react-native-app and not ejected which I'm pretty sure I don't need to run `react-native link` (tried anyways with errors). I...
Also running into this on `"react-native-gesture-handler": "~1.10.2",` It only accepts one letter at a time and the cursor always shows up at the beginning on focus. So if you click...
+1 for being able to configure the default `qs.stringify` somehow, whether it be this method or another. All I needed was to change the arrayFormat and have to pass in...
Not sure which one of these fixed it but I just did everything I could think of: - Uninstall expo from simulator - Close simulator - Stop packager - Delete...
Still having this issue, except I think it's tied to the `onCheckedChange` prop. When I use `onPress` instead it animates, except there's another [bug](https://github.com/xinthink/react-native-material-kit/issues/245) with that where the circle button...
Seems to be an issue with the animation as it doesn't occur with `onCheckedChange` but happens with `onPress`. using `onCheckedChange` [doesn't animate](https://github.com/xinthink/react-native-material-kit/issues/268) the switch though.
Also having this issue in react-native-web. Seems to be called every 3-4 seconds despite increasing the `timeInterval` option
Hi, I'm having the same issue and trying to figure out a solution. The `--max-warnings=0` works when running the lint-staged script directly, but still not working via precommit hook. Output...
I was able to fix the hook failing by checking the exit code of the lint-staged command, but it's still not outputting the eslint errors
All your graphql code (type, enum, etc) needs to be within the `gql` template string where `typeDefs` is defined. I ran into this as well going through the tutorial since...