Is it possible to close react native modal by clicking on overlay when transparent option is true? Documentation doesn\'t provide anything about it
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.