I have a new item button on my BrowseScreen
OnSelect = NewForm(EditForm1);Navigate(EditScreen1, ScreenTransition.None);Set(varFormMode, "New")
and a cancel button on my EditScreen1, OnSelect = ResetForm(EditForm1);Back()
When EditForm1 is invoked as NewForm() from the BrowseGallery, but then cancelled, the EditForm1 shows for a second or two the values from the currently selected item in the Gallery before it goes back to the BrowseGallery from where it was called. This is not desired, if not annoying - especially in Edge and Firefox, in Chrome the transition is much faster and it's hardly noticed.
What can I do to avoid that?