Close react native modal by clicking on overlay?

前端 未结 13 678
梦如初夏
梦如初夏 2020-12-23 14:27

Is it possible to close react native modal by clicking on overlay when transparent option is true? Documentation doesn\'t provide anything about it

13条回答
  •  醉酒成梦
    2020-12-23 14:29

    We can work it out by adding:

    import { TouchableOpacity } from 'react-native';
        this.setState({modalVisibilty:false})}>
        
        
    

    under the window and another one above and change the layout style to fit your screen.

    Explanation:

    You will make 2 big hidden buttons to catch the user touch and change the modal visibility state to false.

提交回复
热议问题