react-native-lightbox
react-native-lightbox copied to clipboard
Images etc in Full Screen Lightbox Popovers for React Native
Hey guys, I am try to fix an issue when switch the device orientation. I have tried to use the activeProps but it only change the size of the image...
when the image closing, always jumped to the middle of the screen, then jump to the image starting position. my images close to left and I used renderContent
Hi! 👋 Here is the diff that solved my problem: ```diff diff --git a/node_modules/react-native-lightbox/LightboxOverlay.js b/node_modules/react-native-lightbox/LightboxOverlay.js index 9e01f9a..a84fd9d 100644 --- a/node_modules/react-native-lightbox/LightboxOverlay.js +++ b/node_modules/react-native-lightbox/LightboxOverlay.js @@ -99,7 +99,8 @@ export default class LightboxOverlay...
Very nice update using the animated library! It really is smoother and lighter! Do you think it would be possible - just like facebook lightbox - to enable a pinch...
I mean if i have few image on the page and i click on one of them, can i swipe with the hand to the next image?
Is this possible to close the light box when click outside the picture instead of pressing x button to make it more user friendly?
So I want to go the overlay view directly with a click of the button. is it possible ?
See the React dev blog. Currently this is an annoying warning but might actually break something in the future https://reactnative.dev/blog/2017/02/14/using-native-driver-for-animated repro steps: - Use the component in debug mode -...
Using this library the latest version of React Native (0.63.4) raises warnings about explicitly setting `useNativeDriver` for the `Animated` functions. I considered hardcoding the value as false for instances of...
1. Fixed the onPandResponderMove is not a function issue. 2. Fixed the Animated.event requires a second argument issue.