mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-26 03:01:51 +08:00
21 lines
794 B
XML
21 lines
794 B
XML
<Page xmlns="http://schemas.nativescript.org/tns.xsd" loaded="pageLoaded">
|
|
|
|
<ActionBar title="Animation Curves" />
|
|
|
|
<ScrollView>
|
|
<StackLayout>
|
|
<Button text="Linear" tap="onAnimateLinear" />
|
|
<Button text="EaseIn" tap="onAnimateEaseIn" />
|
|
<Button text="EaseOut" tap="onAnimateEaseOut" />
|
|
<Button text="EaseInEaseOut" tap="onAnimateEaseInEaseOut" />
|
|
<Button text="Spring" tap="onAnimateSpring" />
|
|
<Button text="Custom" tap="onAnimateCustom" />
|
|
<Button text="Reset" tap="onReset" />
|
|
<AbsoluteLayout width="300" height="200" clipToBounds="true" backgroundColor="LightGray">
|
|
<Image id="view" src="~/res/icon_100x100.png" width="100" height="100" left="100" top="0" />
|
|
</AbsoluteLayout>
|
|
</StackLayout>
|
|
</ScrollView>
|
|
|
|
</Page>
|