Replies: 1 comment 3 replies
-
Prism has the concept of relational go-back and navigate, so you can navigate in relation to where you are now. For example, you could use Prism also has absolute navigation where you can replace the entire navigation stack. For example, you could use If you're a Prism Commercial Plus license holder you can use the new GoBackToAsync method. for example, you could use Hope this helps |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have the following navigation scenario.
Home -> Settings -> BluetoothDeviceSetup (Modal) -> BluetoothDeviceSetUpConfirmation (Modal)
In BluetoothDeviceSetUpConfirmation the user has two choices
"Save and Exit" should close down the modals and the user should end up back where they begun the BluetoothDeviceSetup journey (In this example it is Settings but it could be somewhere else.
"Use newly configured device" should take the user to a page that let's then use the newly configured device AND ensure the two modals BluetoothDeviceSetup and BluetoothDeviceSetUpConfirmation are no longer in the stack.
In Xamarin Forms I used to do this by looping through pages and popping them (Wasn't using Prism).
How would I do this in Prism
Beta Was this translation helpful? Give feedback.
All reactions