mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
14 lines
565 B
XML
14 lines
565 B
XML
<Page loaded="pageLoaded">
|
|
<Page.actionBar>
|
|
<ActionBar title="{{ title }}" icon="{{ mainIcon }}">
|
|
<NavigationButton text="{{ navText }}" icon="{{ navIcon }}" tap="{{ navTap }}"/>
|
|
<ActionBar.actionItems>
|
|
<ActionItem text="{{ firstItemText }}" tap="{{ firstItemTap }}" ios.position="left"/>
|
|
<ActionItem icon="{{ secondItemIcon }}" tap="{{ secondItemTap }}" ios.position="right"/>
|
|
</ActionBar.actionItems>
|
|
</ActionBar>
|
|
</Page.actionBar>
|
|
<StackLayout>
|
|
<Button text="button" tap="buttonTap"/>
|
|
</StackLayout>
|
|
</Page> |