This post explains exactly what I want to do but I'm looking for help on how to do it in NativeScript.
Removing an activity from the history stack
[Resolved] I found the answer here:
This post explains exactly what I want to do but I'm looking for help on how to do it in NativeScript.
Removing an activity from the history stack
[Resolved] I found the answer here:
This is the code solution I came to using angular and nativescript:
// Sign In Page
import { RouterExtensions } from "nativescript-angular/router";
constructor(private _router: RouterExtensions) {}
private onSignInComplete(): void {
this._router.navigate(["/mainPage"], { clearHistory: true });
}