mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
* feat(modals): fire close callback after close in IOS * chore(tests): Fix some test depending on the order of events
12 lines
539 B
XML
12 lines
539 B
XML
<Page xmlns="http://schemas.nativescript.org/tns.xsd" loaded="pageLoaded" backgroundColor="white">
|
|
<StackLayout backgroundColor="PaleGreen">
|
|
<Button text="Login (pop-up)" tap="onTap" />
|
|
<Button text="Login (full-screen)" tap="onTap" />
|
|
<Button text="Login (pop-up-stretched)" tap="onTapStretched" />
|
|
|
|
<Button text="Login (second modal in cb)" tap="onTapSecondModalInCB" />
|
|
<Button text="Login (second modal in timer)" tap="onTapSecondModalInTimer" />
|
|
|
|
<Label id="label" text="Anonymous"/>
|
|
</StackLayout>
|
|
</Page> |