mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
11 lines
563 B
XML
11 lines
563 B
XML
<Page xmlns="http://schemas.nativescript.org/tns.xsd" loaded="pageLoaded">
|
|
<StackLayout>
|
|
<Label text="hint" />
|
|
<TextField secure="true" text="test" hint="hint"></TextField>
|
|
<TextField secure="true" text="text"></TextField>
|
|
<TextField secure="true" hint="hint"></TextField>
|
|
<Label text="bindings" />
|
|
<TextField id="textField" automationText="textField" text="{{ textProperty }}" />
|
|
<TextField id="textFieldSecured" automationText="textFieldSecured" text="{{ textProperty }}" />
|
|
</StackLayout>
|
|
</Page> |