mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
14 lines
379 B
TypeScript
14 lines
379 B
TypeScript
import { Button, EventData } from '@nativescript/core';
|
|
|
|
export function goToFirst(args: EventData) {
|
|
console.log('---> goToFirst Page');
|
|
const button = <Button>args.object;
|
|
button.page.frame.navigate('bottom-navigation/first-page');
|
|
}
|
|
|
|
export function goBack(args: EventData) {
|
|
console.log('---> goBack');
|
|
const button = <Button>args.object;
|
|
button.page.frame.goBack();
|
|
}
|