Allow navigation to a new screen without leaving an entry in the history
818
Views
0
Comments
On our RadarOn our Radar
Mobile

I have the following scenario in a mobile app:

  • Screen A navigates to screen B.
  • Screen B navigates to screen C.
  • In screen C, if the user swipes to go back, I must redirect him to screen A, and not B.

Currently, to be able to do this, I have to use javascript to navigate from A to B and from B to C, so that no history entry is created. It would be great if the "Destination" element allowed me to specify that no history entry should be created.