mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
12 lines
453 B
XML
12 lines
453 B
XML
<Page xmlns="http://schemas.nativescript.org/tns.xsd" loaded="pageLoaded">
|
|
<Page.actionBar>
|
|
<ActionBar title="Transform"/>
|
|
</Page.actionBar>
|
|
<StackLayout>
|
|
<Button text="Animate" tap="onAnimate"/>
|
|
<AbsoluteLayout width="300" height="300" clipToBounds="true" backgroundColor="LightGray">
|
|
<Image id="view" src="~/res/icon_100x100.png" width="100" height="100" left="100" top="100"/>
|
|
</AbsoluteLayout>
|
|
</StackLayout>
|
|
</Page>
|