Daniel Merrill
Daniel Merrill
TLDR: Version 1.1.3 of `idb-companion` seems to be the issue, upgrading to 1.1.5 fixes it. Here's what worked for me: ``` brew tap --repair brew update brew upgrade ``` I...
Running on the JS thread kinda defeats the point of RNGH + Reanimated. I agree this does seem like a pretty significant issue though. Have you tried Reanimated 3.x? Looks...
I was getting this error until I removed the `onLoad` and `onLoadEnd` callbacks. Installing from master also caused it to go away, presumably because the code on master includes an...
I solved this in the iOS sim by prepending `file://` to my uri, although I haven't confirmed on device yet though. The uri returned from the image picker was ```...
I am able to pan, but only after pinching to zoom. Pan is locked up until the pinch gesture. Edit: Looks like that's intentional, but it feels wrong: https://github.com/alwx/react-native-photo-view/blob/master/ios/RNPhotoView.m#L209-L210
@EHRdev thanks for the SO link, here's a patch that incorporates it: https://gist.github.com/computerjazz/a2214c50b36cbb81f4a64e3405e9b60d
as of android SDK 31 you now also need to request `READ_PHONE_STATE` permission or else this will silently fail/noop. See the end of the linked SO post: https://stackoverflow.com/a/71789261 you may...
I found this tensorflow PR from 2022 that was supposed to enable tflite to build for arm64 simulators: https://github.com/tensorflow/tensorflow/pull/55777 Is it possible we just need to add `--config=ios_sim_arm64` to the...
I'm not sure I fully understand your useCase, you get a `percentOpen` animated value that you should be use to roll your own event that triggers on swipe start: https://github.com/computerjazz/react-native-swipeable-item#props...
please try https://github.com/computerjazz/react-native-swipeable-item/releases/tag/v2.0.8 and let me know if it fixes the issue.