Levi Buzolic

Results 33 comments of Levi Buzolic

@DylanVann are you looking for additional contributors to help work through PRs and publish releases? I'd be happy to help get some of these patches/fixes through.

Also hitting this issue, rather than disabling the reduce motion detection for Reanimated globally we went with conditionally supplying our own animation config only when required. There are still some...

@lunaleaps more than happy to, but I think this may already covered by [TextInputs's inheritance of ViewProps](https://reactnative.dev/docs/textinput#view-props). `TextInput` doesn't explicitly include documentation any of the core `accessibility*` or `aria-*` props.

Testing the library on a physical Android device, it looks like there has been some accessibility regressions which are probably related. I'm able to focus the currently selected values, but...

I've narrowed it down to the commented out `info.setVisibleToUser` calls that were applied by the [`NumberPicker.patch`](https://github.com/henninghall/react-native-date-picker/blob/2d69bcd770de7ed12f9cf9719c17654e65772fde/scripts/NumberPicker.patch): - https://github.com/henninghall/react-native-date-picker/blob/2d69bcd770de7ed12f9cf9719c17654e65772fde/android/src/main/java/com/henninghall/date_picker/generated/NumberPicker.java#L2743 - https://github.com/henninghall/react-native-date-picker/blob/2d69bcd770de7ed12f9cf9719c17654e65772fde/android/src/main/java/com/henninghall/date_picker/generated/NumberPicker.java#L2767 - https://github.com/henninghall/react-native-date-picker/blob/2d69bcd770de7ed12f9cf9719c17654e65772fde/android/src/main/java/com/henninghall/date_picker/generated/NumberPicker.java#L2816 Manually updating these to `info.setVisibleToUser(true)` fixes the issue,...

@Othman2001 I was able to build your project without issue. You mentioned `pod install` didn't work, did you run this from the `ios` directory? It may help to clear our...

The path that’s trying to be accessed in that error message looks incorrect. Notice the “packages” directory which should be “node_modules”. This doesn’t appear to be an issue with your...

@rejas thanks for the ping. Done!

Have resolved the merge conflicts, as far as I can tell this still makes sense as it aligns the implementation with the docs, but not sure what direction the team...