async void Handle_Clicked(object sender, System.EventArgs e)
 {
     NotificationPage notificationPage = new NotificationPage();
     await Navigation.PushAsync(notificationPage);
 }
Exemple #2
0
 private async void Notifications_Clicked(object sender, EventArgs eventArgs)
 {
     NotificationPage notificationPage = new NotificationPage();
     await Navigation.PushAsync(notificationPage);
 }