mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
* fix-next(ios-modal-view): force stretch alignment * feat(modal): introduce stretched param to showModal method * test(modal-view): add modal view stretched test
8 lines
379 B
XML
8 lines
379 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" />
|
|
<Label id="label" text="Anonymous"/>
|
|
</StackLayout>
|
|
</Page> |