mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-26 03:01:51 +08:00
14 lines
787 B
XML
14 lines
787 B
XML
<Page>
|
|
<Page.actionBar>
|
|
<ActionBar title="{{ exampleName }}">
|
|
<NavigationButton text="Go Back" android.systemIcon="ic_menu_back"></NavigationButton>
|
|
</ActionBar>
|
|
</Page.actionBar>
|
|
<GridLayout rows="*,*,*,*">
|
|
<Button text="This a test of a wrapping button [CENTER]" textWrap="true" style="text-align:center; width:100" />
|
|
<Button row="1" text="This a test of a wrapping button [RIGHT]" textWrap="true" style="text-align:right;width:100" />
|
|
<Button row="2" text="This a test of a wrapping button [LEFT]" textWrap="true" style="text-align:left;width:100" />
|
|
<Button row="3" text=" This a test of a wrapping button [CENTER ICON]" textWrap="true" style="text-align:center;width:100" />
|
|
</GridLayout>
|
|
</Page>
|