I\'ve been trying to allow a user to confirm logout by using DisplayAlert. If they click \"No\" it should remain in their profile page else they should be redirected back to
DisplayAlert returns a boolean (true / false):
DisplayAlert
true
false
var answer = await DisplayAlert("Exit", "Do you wan't to exit the App?", "Yes", "No"); if (answer) { // User choose Yes } else { // User choose No }