Files
NativeScript/apps/app/ui-tests-app/action-bar/action-item-position.xml
2016-07-22 15:43:36 +03:00

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>