react-native-flip-view
react-native-flip-view copied to clipboard
JavaScript implementation of a view container that can flip between its front and back
Make it compatible with the latest RN versions
`PropTypes` is no longer part of `react` and hence must required from package `prop-types`. Similar to [this issue](https://github.com/devfd/react-native-google-signin/issues/280). Insert `var PropTypes = require('prop-types');` [here](https://github.com/kevinstumpf/react-native-flip-view/blob/master/index.js#L8)
The front view always doesn't want to show, and is overwritten by the reverse back view. How i to fix that ?
Whenever I am trying to use FlipView, app is not running and it is giving error. I tried sample app from: https://www.npmjs.com/package/react-native-flip-view "react": "16.0.0", "react-native": "0.50.4", "react-native-flip-view": "^1.0.5" ![simulator screen...
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...
Add opacity animation to fix the issue on Android. Use 'import' syntax to replace 'require'
Enabling useNativeDriver helps with performance of animations
Would be great if this library exposed a `backgroundColor` prop on `FlipView` so that one can set a custom color as the backdrop that becomes visible at the edges during...