mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-19 06:10:56 +08:00
15 lines
485 B
XML
15 lines
485 B
XML
<Page
|
|
xmlns="http://schemas.nativescript.org/tns.xsd" navigatingTo="navigatingTo">
|
|
<Page.actionBar>
|
|
<ActionBar>
|
|
<ActionItem ios.position="right" tap="{{ change }}">
|
|
<Button text="{{ text }}" backgroundColor="red" />
|
|
</ActionItem>
|
|
</ActionBar>
|
|
</Page.actionBar>
|
|
<StackLayout>
|
|
<Label text="Tap to change the text in the actionbar" class="title"/>
|
|
<Button text="Tap" tap="{{ onTap }}" />
|
|
<Label text="{{ text }}"/>
|
|
</StackLayout>
|
|
</Page> |