Navigate Back
The Navigate Back action is used to return to the previous page in a browser's history.
This table describes the parameters for the Navigate Back action:
Parameter Name | Description |
---|---|
params | A key/value pair map that will be used to pass parameters to the page. |
Here's an example of a call to the Navigate Back action, in which two parameters are passed:
await Actions.navigateBack(context, {params: {
inParam: $variables.var1,
inParm1: $variables.var2,
},
});