Posts

Showing posts with the label React-native pop up

React-native pop up ,React-native Pop up hide on the touch of outside the pop up,

Image
Hide the Modal on the touch of outside the view Working with react-native there are many cases when you want and need to show the pop up,like when verification is done of password, Otp verification or you want to make custom Drop dwon and many other cases, and all these case you want on touch of out side the pop-up, pop-up should be dismiss, you can do this with the help of Modal in react-native, you can mangae the touch of out side the view and in side the view both , we can use the touchablewithoutfeedback but with the help of touchablewithoutfeedback you can't stop the touch of inside, if you use touchablewithoutfeedback and your user touch inside the view your view will be disapper, In this Post we learn how to manage the touch out side and inside the view:-   first of all import Modal from the react-native  import{Modal,View,TouchableOpacityWithOutFeedBack,Text}  After Importing the Modal set the state -  *if Your are using the Class component:- constructor(prop...