mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
13 lines
433 B
XML
13 lines
433 B
XML
<Page xmlns="http://schemas.nativescript.org/tns.xsd" loaded="pageLoaded">
|
|
|
|
<ActionBar title="Use Animate.css animation" />
|
|
|
|
<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>
|