Set text-field and text-view tintColor to textColor (iOS) (fixes #4357) EXTENDED (#4549)

* set text-field and text-view tintColor to textColor (#4357)

* Rest tint color
This commit is contained in:
Alexander Vakrilov
2017-07-25 11:22:21 +03:00
committed by GitHub
parent 4bd3a94873
commit 5a660a6eda
3 changed files with 26 additions and 22 deletions

View File

@@ -6,14 +6,14 @@
<Label text="TextView:" />
<TextView hint="nothing" fontSize="18" />
<TextView hint="placeholder-color" style="placeholder-color: green;" fontSize="18" />
<TextView hint="color" style="color: blue;" fontSize="18" />
<TextView hint="both" style="color: blue; placeholder-color: green;" fontSize="18" />
<TextView hint="color" style="color: brown;" fontSize="18" />
<TextView hint="both" style="color: brown; placeholder-color: green;" fontSize="18" />
<Label text="TextField:" />
<TextField hint="nothing" fontSize="18" />
<TextField hint="placeholder-color" style="placeholder-color: green;" fontSize="18" />
<TextField hint="color" style="color: blue;" fontSize="18" />
<TextField hint="both" style="color: blue; placeholder-color: green;" fontSize="18" />
<TextField hint="color" style="color: brown;" fontSize="18" />
<TextField hint="both" style="color: brown; placeholder-color: green;" fontSize="18" />
<StackLayout orientation="horizontal">
<Button id="btnSetText" text="set text" tap="setText" width="80"/>