mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
16 lines
409 B
TypeScript
16 lines
409 B
TypeScript
import { EventData, Page, Tabs } from '@nativescript/core';
|
|
|
|
export function goToFirst(args: EventData) {
|
|
const page = <Page>(<any>args.object).page;
|
|
const tabsNav = <Tabs>page.getViewById('tabsNav');
|
|
|
|
tabsNav.selectedIndex = 0;
|
|
}
|
|
|
|
export function goToSecond(args: EventData) {
|
|
const page = <Page>(<any>args.object).page;
|
|
const tabsNav = <Tabs>page.getViewById('tabsNav');
|
|
|
|
tabsNav.selectedIndex = 1;
|
|
}
|