Files
NativeScript/apps/ui/src/action-bar/action-view-page.xml
2020-08-30 12:00:07 -07:00

20 lines
566 B
XML

<Page>
<Page.actionBar>
<ActionBar automationText="actionBar">
<ActionBar.actionItems>
<ActionItem tap="navigate">
<ActionItem.actionView>
<StackLayout orientation="horizontal">
<Label text="Green" color="green" />
<Label text="Red" color="red" />
</StackLayout>
</ActionItem.actionView>
</ActionItem>
</ActionBar.actionItems>
</ActionBar>
</Page.actionBar>
<StackLayout>
<Button text="go to cleared page" tap="navigate"/>
</StackLayout>
</Page>