CUSTOM ALERT
onPress={() => Alert.alert(
"Logout",
"Are you sure, you want to logout ?",
[{
text: "NO",
style: "cancel"
},
{ text: "YES", onPress: () => this.logout() }
],
{ cancelable: true }
)
}
Comments
Post a Comment