Hi,
When using Page.DisplayAlert with two options expecting a bool result, on Android when the user taps outside the Dialog box, it closes and the the "await" does not return any value, where it should at least return false.
This behavior is changeable on Android with
alert.setCanceledOnTouchOutside(false);
and
alert.setCancelable(false); // prevent using back button