mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-26 03:01:51 +08:00
35 lines
1.4 KiB
XML
35 lines
1.4 KiB
XML
<Page xmlns="http://schemas.nativescript.org/tns.xsd" loaded="pageLoaded" id="opacityPage">
|
|
<StackLayout orientation="vertical">
|
|
<StackLayout orientation="vertical">
|
|
<Label text="opacity" width="180" />
|
|
<Slider id="opacitySlider" minValue="0" maxValue="100" width="180" />
|
|
<Button text="Set" tap="onSetOpacity"/>
|
|
<Button text="Animate" tap="onAnimateOpacity"/>
|
|
<Button text="Reset" tap="onReset"/>
|
|
</StackLayout>
|
|
<WrapLayout orientation="horizontal" id="container">
|
|
|
|
<StackLayout class="complex"/>
|
|
<Button text="Button" class="complex"/>
|
|
<Label text="Label" class="complex"/>
|
|
<Image src="~/test-icon.png" class="complex"/>
|
|
<TextField text="TextField" class="complex"/>
|
|
<TextView text="TextView" class="complex"/>
|
|
|
|
<StackLayout class="simple"/>
|
|
<Button text="Button" class="simple"/>
|
|
<Label text="Label" class="simple"/>
|
|
<Image src="~/test-icon.png" class="simple"/>
|
|
<TextField text="TextField" class="simple"/>
|
|
<TextView text="TextView" class="simple"/>
|
|
|
|
<StackLayout class="none"/>
|
|
<Button text="Button" class="none"/>
|
|
<Label text="Label" class="none"/>
|
|
<Image src="~/test-icon.png" class="none"/>
|
|
<TextField text="TextField" class="none"/>
|
|
<TextView text="TextView" class="none"/>
|
|
|
|
</WrapLayout>
|
|
</StackLayout>
|
|
</Page> |