Files
NativeScript/tests/app/ui/bindingContext_testPage.xml
Panayot Cankov e135c20b14 Rename the files
2016-05-26 14:30:25 +03:00

16 lines
612 B
XML

<Page xmlns="http://schemas.nativescript.org/tns.xsd"
xmlns:g="components/grid-view/grid-view"
loaded="pageLoaded">
<StackLayout id="upperStack">
<Label id="upperStackLabel" text="{{ item.Title }}" />
<StackLayout id="firstStack" bindingContext="{{ item }}" orientation="horizontal">
<Label id="labelText1" text="1" />
<Label id="label1" text="{{ Title }}" />
</StackLayout>
<StackLayout id="secondStack" bindingContext="{{ item }}" orientation="horizontal">
<Label id="labelText2" text="2" />
<Label id="label2" text="{{ Title }}" />
</StackLayout>
</StackLayout>
</Page>