We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, we're using react-native-image-zoom-viewer as image viewer. Animations are too junky and it's not well maintained.
We need to refactor and split by OS:
iOS supports zoom by default on ScrollView. We need to wrap the image in a ScrollView and use maximumZoomScale
It doesn't support zoom in the same way as iOS, so we need to have a separate logic. react-native-reanimated is really awesome and have an ImagePreview example: https://github.com/kmagiera/react-native-reanimated/blob/master/README.md#100-declarative-gesture-interactions
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Currently, we're using react-native-image-zoom-viewer as image viewer.
Animations are too junky and it's not well maintained.
We need to refactor and split by OS:
iOS
iOS supports zoom by default on ScrollView. We need to wrap the image in a ScrollView and use maximumZoomScale
Android
It doesn't support zoom in the same way as iOS, so we need to have a separate logic.
react-native-reanimated is really awesome and have an ImagePreview example: https://github.com/kmagiera/react-native-reanimated/blob/master/README.md#100-declarative-gesture-interactions
The text was updated successfully, but these errors were encountered: