Stacked TouchableOpacity inside another TouchableOpacity is not clickable

前端 未结 3 695
深忆病人
深忆病人 2021-02-05 10:14

Even though this document (https://facebook.github.io/react-native/docs/gesture-responder-system.html) states, that touch events are passed down to the children and are only con

3条回答
  •  难免孤独
    2021-02-05 11:00

    Change import of Touchable opacity from

    import { TouchableOpacity } from 'react-native-gesture-handler';
    

    To the following and it will now all be fine!

    import { TouchableOpacity } from 'react-native';
    

提交回复
热议问题