Files
NativeScript/apps/app/devtools-app/main-page.xml
Alexander Vakrilov f2462158fb Chrome devtools elements tab support for Android (#4351)
* 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
2017-06-12 16:48:27 +03:00

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>