mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
15 lines
749 B
XML
15 lines
749 B
XML
<Page xmlns="http://schemas.nativescript.org/tns.xsd" id="padding-and-border-page">
|
|
<StackLayout>
|
|
<Button id="changeButton" tap="onChangeCSS"/>
|
|
<TextView id="info" isEnabled="false" isUserInteractionEnabled="false"/>
|
|
<StackLayout id="container" style.backgroundColor="gray">
|
|
<Label id="label" text="Label"/>
|
|
<TextField id="textField" text="TextField"/>
|
|
<TextView id="textView" text="TextView"/>
|
|
<Button id="button" text="Button"/>
|
|
<StackLayout id="stack-layout">
|
|
<StackLayout id="child-of-stack-layout" width="50" height="50" style.backgroundColor="red"></StackLayout>
|
|
</StackLayout>
|
|
</StackLayout>
|
|
</StackLayout>
|
|
</Page> |