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
19 lines
793 B
XML
19 lines
793 B
XML
<Page backgroundColor="green" showingModally="onShowingModally" loaded="onLoaded"
|
|
navigatingTo="onNavigatingTo"
|
|
navigatingFrom="onNavigatingFrom"
|
|
navigatedTo="onNavigatedTo"
|
|
navigatedFrom="onNavigatedFrom">
|
|
|
|
<ActionBar class="action-bar">
|
|
<Label class="action-bar-title" text="Modal"></Label>
|
|
</ActionBar>
|
|
|
|
<StackLayout backgroundColor="lightGreen">
|
|
<Button text="Navigate To Second Page" tap="onNavigate" visibility="{{ navigationVisibility }}" />
|
|
<Button text="Show Dialog" tap="showDialog" />
|
|
<Button text="Show Nested Modal Page With Frame" tap="showNestedModalFrame" />
|
|
<Button text="Show Nested Modal Page" tap="showNestedModalPage" />
|
|
<Button text="Close Modal" tap="closeModal" />
|
|
</StackLayout>
|
|
</Page>
|