Files
NativeScript/apps/app/ui-tests-app/text-field/secured-text-field-4135.xml
2017-06-05 16:48:56 +03:00

11 lines
578 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" maxLength="3" ></TextField>
<Label text="bindings" />
<TextField id="textField" automationText="textField" text="{{ textProperty }}" />
<TextField id="textFieldSecured" automationText="textFieldSecured" text="{{ textProperty }}" />
</StackLayout>
</Page>