Files
NativeScript/apps/modal-views-demo/main-page.xml
2015-11-09 14:20:01 +02:00

15 lines
613 B
XML

<Page xmlns="http://schemas.nativescript.org/tns.xsd" id="_mainPage" backgroundColor="Red"
navigatingTo="onNavigatingTo"
loaded="onLoaded"
navigatedTo="onNavigatedTo"
navigatingFrom="onNavigatingFrom"
navigatedFrom="onNavigatedFrom"
unloaded="onUnloaded">
<StackLayout backgroundColor="PaleGreen">
<Button text="Login (small)" tap="onTap" />
<Button text="Login (full-screen)" tap="onTap" />
<Button text="Login (navigate)" tap="onTap" />
<Label id="label" text="Anonymous"/>
<Button text="Close Modal" tap="onCloseModal" />
</StackLayout>
</Page>