Files
NativeScript/e2e/animation/app/chaining-with-animation-set/page.xml
2018-06-19 17:52:02 +03:00

17 lines
1.1 KiB
XML

<Page xmlns="http://schemas.nativescript.org/tns.xsd" loaded="pageLoaded">
<Page.actionBar>
<ActionBar title="Chaining with Animation set" />
</Page.actionBar>
<StackLayout>
<Button text="Animate Sequentially" tap="onAnimateSequentially" />
<Button text="Animate Simultaneously" tap="onAnimateSimultaneously" />
<Button text="Reset" tap="onReset" />
<AbsoluteLayout width="300" height="300" clipToBounds="true" backgroundColor="LightGray">
<Label id="view1" text="{N1}" width="100" height="100" left="0" top="0" style.textAlignment="center" backgroundColor="Red" style.fontSize="30" />
<Label id="view2" text="{N2}" width="100" height="100" left="200" top="0" style.textAlignment="center" backgroundColor="Yellow" style.fontSize="30" />
<Label id="view3" text="{N3}" width="100" height="100" left="200" top="200" style.textAlignment="center" backgroundColor="Green" style.fontSize="30" />
<Label id="view4" text="{N4}" width="100" height="100" left="0" top="200" style.textAlignment="center" backgroundColor="Blue" style.fontSize="30" />
</AbsoluteLayout>
</StackLayout>
</Page>