Method PopBackStack
PopBackStack()
Pop the current destination from the back stack and navigate to the previous destination.
Declaration
public bool PopBackStack()
Returns
Type | Description |
---|---|
bool | True if the back stack was popped, false otherwise. |
PopBackStack(string, bool, bool)
Pop the current destination from the back stack and navigate to the given destination.
Declaration
public bool PopBackStack(string route, bool inclusive = false, bool saveState = false)
Parameters
Type | Name | Description |
---|---|---|
string | route | The route of the destination to navigate to. |
bool | inclusive | Whether to pop the destination with the given route or not. |
bool | saveState | Whether to save the state of the popped destinations or not before popping them. |
Returns
Type | Description |
---|---|
bool | True if the back stack was popped, false otherwise. |