mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
15 lines
613 B
XML
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> |