Files
NativeScript/e2e/nested-frame-navigation/app/layout-root/layout-home-secondary-page.xml
Manol Donev 463b1fa5f9 [Do Not Merge] chore(e2e): skip specific test suites with known issues on android / ios (#6797)
* Update README.md

* comment flip

* skip specific test suites with known issues

* restore skipped ios tests

* chore: update css for ios

* chore: update android css

* chore: tab-root tests remove suspend for android

* chore: frame-root tested on api23, api27 and ios11

* chore: fix tslint

* chore: frame-tab-root tests api27

* chore: lower font size
2019-03-04 11:35:07 +02:00

21 lines
767 B
XML

<Page xmlns="http://schemas.nativescript.org/tns.xsd" class="page">
<ActionBar >
<Label 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>