So on my app.xaml.cs I have
CrossPushNotification.Current.OnNotificationReceived += (s, p) =>
{
//something like Navigation.PushAsync(new Page(Data from the notification));
}
How can I open 'Page' and give the data of the notification as an argoument?
Thanks to all.