mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
17 lines
491 B
XML
17 lines
491 B
XML
<Page class="page"
|
|
navigatingTo="onNavigatingTo"
|
|
navigatingFrom="onNavigatingFrom"
|
|
navigatedTo="onNavigatedTo"
|
|
navigatedFrom="onNavigatedFrom"
|
|
xmlns="http://schemas.nativescript.org/tns.xsd">
|
|
|
|
<ActionBar class="action-bar">
|
|
<Label class="action-bar-title" text="Modal Second"></Label>
|
|
</ActionBar>
|
|
|
|
<StackLayout>
|
|
<Button text="Go Back" tap="onGoBack" />
|
|
<Button text="Close Modal" tap="onCloseModal" />
|
|
</StackLayout>
|
|
</Page>
|