Add autocorrect equals false to some pages to prevent failures on CI

This commit is contained in:
SvetoslavTsenov
2017-05-05 11:19:56 +03:00
parent ab6ceaf54d
commit 8404410819
3 changed files with 29 additions and 29 deletions

View File

@@ -4,11 +4,11 @@
</ActionBar>
</Page.actionBar>
<StackLayout>
<Button id="ChangeText" text="Change text" tap="onChangeText" />
<Button id="Change" text="Change" tap="onChangeTextTransformation" />
<Label id="Label" text="label Label" style.textTransform="none" />
<Button id="Button" text="button Button" style.textTransform="none" />
<TextField id="TextField" text="textField textField" style.textTransform="none" />
<TextView id="TextView" text="textView textView" style.textTransform="none" />
<Button id="ChangeText" text="Change text" autocorrect="false" tap="onChangeText" />
<Button id="Change" text="Change" autocorrect="false" tap="onChangeTextTransformation" />
<Label id="Label" text="label Label" autocorrect="false" style.textTransform="none" />
<Button id="Button" text="button Button" autocorrect="false" style.textTransform="none" />
<TextField id="TextField" text="textField textField" autocorrect="false" style.textTransform="none" />
<TextView id="TextView" text="textView textView" autocorrect="false" style.textTransform="none" />
</StackLayout>
</Page>