mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
* Enable chrome-devtools elemets tab * Trigger updates when property is chaned form native * Tslint fixes * Don't run dom-elemet tests in IOS * fix tests * Create package.json * Update package.json * domNode changed to field for performance
29 lines
954 B
XML
29 lines
954 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<Page navigatedTo="print">
|
|
<GridLayout rows="* * *" columns="* * *">
|
|
|
|
<Button id="btn"
|
|
customProp="custom"
|
|
text="hi there"
|
|
fontSize="30"
|
|
row="1"
|
|
col="1"
|
|
color="red"
|
|
backgroundColor="lightgreen"
|
|
class="btn"
|
|
tap="change"/>
|
|
<Button text="class: btn1" class="btn1" row="1" col="0"/>
|
|
<Button text="class: btn2" class="btn2" row="1" col="2"/>
|
|
|
|
<Button text="add" tap="add" />
|
|
<Button text="remove" tap="remove" col="2" />
|
|
|
|
<Button text="move beach" tap="navigate" col="1" />
|
|
<StackLayout colSpan="3" row="2" id="container">
|
|
<TextField hint="hint" text="123" />
|
|
<TextField hint="hint" text="456" />
|
|
|
|
|
|
</StackLayout>
|
|
</GridLayout>
|
|
</Page> |