Files
NativeScript/e2e/nested-frame-navigation/app/layout-root/layout-home-secondary-page.xml
2018-11-28 16:59:17 +02:00

21 lines
810 B
XML

<Page xmlns="http://schemas.nativescript.org/tns.xsd" class="page">
<ActionBar class="action-bar">
<Label class="action-bar-title" text="layout home secondary page" horizontalAlignment="center" />
</ActionBar>
<GridLayout rows="auto, *">
<StackLayout>
<Button text="navigate to other page (default transition)" tap="onNavigate" />
<Button text="navigate to other page (no transition)" tap="onNavigateNone" />
<Button text="navigate to other page (slide transition)" tap="onNavigateSlide" />
<Button text="navigate to other page (flip transition)" tap="onNavigateFlip" />
</StackLayout>
<GridLayout row="1">
<Frame defaultPage="teams/teams-items-page" />
</GridLayout>
</GridLayout>
</Page>