mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-19 06:10:56 +08:00
20 lines
539 B
XML
20 lines
539 B
XML
<Page>
|
|
<Page.actionBar>
|
|
<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>
|