I have an app with a button and a simple function to Navigate from the ViewScreen to the HomeScreen. This app is a copy of another app created months ago with the same set up which is working just fine.
In the new one, all navigation buttons take you for a second to the indicated screen and flash right back to the screen you were.
If I am in the ViewScreen, click on the Home button, it navigates to the HomeScreen for 1 second and then back to the ViewScreen.
Same with another button in the ViewScreen to Navigate from ViewScreen to EditScreen, it flashes right back to the original screen.
It is a simple function, and I have the same set up in old apps but for some reason, the one created yesterday doesn't work.
The code I have in the EditScreen, in the On Select property: Navigate('HomeScreen')
In the View Screen, I have an Edit icon with the On Select property: EditForm(EditForm);Navigate(EditScreen)
In the View Screen I also have a Home Icon with the On Select property: Navigate('HomeScreen')
When you click on those icons, the user is taken to the desire screen for 1 second and then it goes back to either the EditScreen or the ViewScreen.