Files
2018-06-19 18:58:11 +03:00

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>