Morgan Trudeau
Morgan Trudeau
I think the biggest issue here is `openAppStoreIfInAppFails=true` is not working. If the modal can't be opened the google play store should be opened.
I can't reproduce this myself using any android device I own. If someone has some reproduction steps that would be great. In my app I am not calling requestForegroundPermissionsAsync() on...
I see the same thing with `Animated.event`. Doesn't update animated values when the event is passed to `onGestureEvent` prop. `onGestureEvent` is definitely firing though. I have tried this with versions...
Experiencing the same issue. In the code below I have a user list in Tabs. There is a shared transition when navigating to the Profile screen. This works if I...
Tried the workaround mentioned above. It seems to help keep the animation when pushing a new screen but not going back to previous screen. There is a weird bounce when...
Here is a minimal reproduction with react-navigation v6. https://snack.expo.dev/@morgantrudeau/v6-share-trans-tab-bug Dependencies for snack code ``` "@react-native-community/masked-view": "^0.1.11", "@react-navigation/bottom-tabs": "^5.11.15", "@react-navigation/native": "^5.9.8", "@react-navigation/stack": "^5.14.9", "react": "17.0.2", "react-native": "0.67.2", "react-native-gesture-handler": "^2.2.0", "react-native-reanimated": "^2.4.1",...
I can confirm the snack above does not work with the following v5 dependencies either. ``` "@react-navigation/bottom-tabs": "^5.11.15", "@react-navigation/native": "^5.9.8", "@react-navigation/stack": "^5.14.9", ```
Consider using ReactNative.PermissionsAndroid to request Android permissions.
Yes I see basic example from this repo is not working in android 10.
Looks like useDimensions listener returns height and width equal to 0 sometimes. I changed to this and it prevents the crash. ``` // lib/utils/use-dimensions.js exports.useDimensions = () => { const...