mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
14 lines
523 B
XML
14 lines
523 B
XML
<Page xmlns="http://schemas.nativescript.org/tns.xsd" loaded="pageLoaded">
|
|
|
|
<ActionBar title="Multiple Properties" />
|
|
|
|
<StackLayout>
|
|
<Button text="Animate" tap="onAnimate" />
|
|
<Button text="Reset" tap="onReset" />
|
|
<AbsoluteLayout width="300" height="300" clipToBounds="true" backgroundColor="LightGray">
|
|
<Label id="view" text="{N}" width="100" height="100" left="100" top="100" style.textAlignment="center" backgroundColor="White" style.fontSize="30" />
|
|
</AbsoluteLayout>
|
|
</StackLayout>
|
|
|
|
</Page>
|