Files
NativeScript/apps/ui/app/bottom-navigation/fancy-fonts-page.ts
Nathan Walker 1e6fccf272 chore: cleanup
2020-07-23 14:03:37 -07:00

10 lines
318 B
TypeScript

import { EventData, Page, BottomNavigation } from '@nativescript/core';
export const selectTab = (args: EventData) => {
const page = <Page>(<any>args.object).page;
const bottomNav = <BottomNavigation>page.getViewById('bottomNavigation');
const index = (<any>args.object).tag;
bottomNav.selectedIndex = index;
};