Problems with double click/tap on binded navigation commands.
Ex.
public Command AddContact {
get {
return new Command (async () => {
await CoreMethods.PushPageModel<ContactPageModel> ();
});
}
}
Can be reproduced in the FreshMvvmSampleApp.Droid project on Nexus 5 (lollipop) emulator (mac os x).
"Basic Navigation" -> 2x click on Quotes.
Opens the Quotes page 2 times. Two pages is put on the stack, before the application navigates to the one of them.
(I have the same problem on my testapp on a physical Nexus 5X)
Clicking on the ADD button (ex. on Master detail page) like a maniac, crashes the app with NullReferenceException.

Problems with double click/tap on binded navigation commands.
Ex.
Can be reproduced in the FreshMvvmSampleApp.Droid project on Nexus 5 (lollipop) emulator (mac os x).
"Basic Navigation" -> 2x click on Quotes.
Opens the Quotes page 2 times. Two pages is put on the stack, before the application navigates to the one of them.
(I have the same problem on my testapp on a physical Nexus 5X)
Clicking on the ADD button (ex. on Master detail page) like a maniac, crashes the app with NullReferenceException.