react-native-flip-view
react-native-flip-view copied to clipboard
Not Working on Android
This doesn't appear to be working on Android. The front card seems to be completely white no matter what I do. If I flip the card, the back side shows up fine.
me too~!
+1
+1
looks like it is because backfaceVisibility
is missing in android
https://github.com/facebook/react-native/issues/1973
Hey Guys. Did you managed to solve this? I'm also with the same problem.
I had made a pull request to fix this.
I've created https://github.com/dgladkov/react-native-flip-view-next that includes a similar fix to the PR mentioned above.
My solution uses single Animated.Value for all animations and uses different interpolation function for opacity: instead of linear opacity transition used here it toggles between 0/1 as it reaches half transition (180deg rotation), emulating backfaceVisibility support on Android.