alantoa / react-native-awesome-slider

🚀 An anwesome <Slider/> that supports various features haptic, lottie, animation, ballon, etc.
MIT License
263 stars 30 forks source link

Issue with modal in android. #80

Open vishaljnimblechapps opened 3 weeks ago

vishaljnimblechapps commented 3 weeks ago

This Caused re-render in android when use with modal. Please see attach video.

https://github.com/user-attachments/assets/115b7d3a-635d-47c7-b2ed-cfd16634578f

AndrRomanenko commented 3 days ago

@vishaljnimblechapps Try to wrap your modal content with useMemo

const Content = useMemo(
    () =>
       // gestureHandlerRootHOC to work properly on Android
      gestureHandlerRootHOC(() => (
        <View>
        .....
        </View>
     )), 
    []
   );

   return (
   <Modal>
     <Content />
   </Modal>
   )