Merge pull request #3755 from NativeScript/yosifov/fix-text-field-snippet

Fix text field code snippet
This commit is contained in:
yyosifov
2017-03-08 17:26:51 +01:00
committed by GitHub

View File

@@ -13,8 +13,8 @@ Using a TextField requires the text-field module.
```XML
<Page loaded="pageLoaded">
<StackLayout orientation="vertical">
{%raw%}<TextView text="{{ someProperty }}" />
<TextView text="{{ someProperty }}" />{%endraw%}
{%raw%}<TextField text="{{ someProperty }}" />
<TextField text="{{ someProperty }}" />{%endraw%}
</StackLayout>
</Page>
```