Files
NativeScript/e2e/nested-frame-navigation/app/still-other-page/still-other-page.ts

8 lines
239 B
TypeScript

import { EventData } from "tns-core-modules/ui/page";
import { Button } from "tns-core-modules/ui/button";
export function onBackButtonTap(args: EventData): void {
const button = <Button>args.object;
button.page.frame.goBack();
}