mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-26 03:01:51 +08:00
19 lines
717 B
XML
19 lines
717 B
XML
<Page>
|
|
<Page.actionBar>
|
|
<ActionBar automationText="actionBar">
|
|
<ActionBar.actionItems>
|
|
<!-- font family + font size + color -->
|
|
<ActionItem icon="font://" class="font-awesome font-size color" tap="navigate"/>
|
|
<!-- default font + valid char code -->
|
|
<ActionItem icon="font://" tap="navigate"/>
|
|
<!-- font family + invalid char code -->
|
|
<ActionItem icon="font://" class="font-awesome font-size" tap="navigate"/>
|
|
</ActionBar.actionItems>
|
|
</ActionBar>
|
|
</Page.actionBar>
|
|
|
|
<StackLayout>
|
|
<Button text="go to cleared page" tap="navigate"/>
|
|
<Button text="undefined" tap="onChangeRenderingMode"/>
|
|
</StackLayout>
|
|
</Page> |