mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
* fix(ios-dialogs): unable to show dialog from modal view * tests(modal-navigation): add test that opens dialog inside modal view
13 lines
670 B
XML
13 lines
670 B
XML
<StackLayout>
|
|
<Label text="Home" horizontalAlignment="center" />
|
|
<Button text="Show Modal Without Page" tap="onModalNoPage" />
|
|
<Button text="Show Modal Page With Frame" tap="onModalFrame" />
|
|
<Button text="Show Modal Page" tap="onModalPage" />
|
|
<Button text="Show Modal Layout" tap="onModalLayout" />
|
|
<Button text="Show Modal TabView" tap="onModalTabView" />
|
|
<Button text="Navigate To Second Page" tap="onNavigate" />
|
|
<Button text="Reset Frame Root View" tap="onFrameRootViewReset" />
|
|
<Button text="Reset Tab Root View" tap="onTabRootViewReset" />
|
|
<Button text="Reset Layout Root View" tap="onLayoutRootViewReset" />
|
|
</StackLayout>
|