Bug/keyboard upcase #904 (#968)

* accounts, recover, screen: Android Fix keyboard with upcase

* transactions, screen: Android Fix keyboard with upcase
This commit is contained in:
Andre Luis Anastacio 2017-04-05 07:15:33 -03:00 committed by Roman Volosovskyi
parent caa1d6e66a
commit 5996f1c3bf
2 changed files with 11 additions and 9 deletions

View File

@ -39,15 +39,16 @@
(label :t/enter-valid-passphrase))]
[view
[text-field
{:value passphrase
:error error
:error-color color-blue
:label (label :t/passphrase)
:label-color color-gray
:line-color separator-color
:input-style st/input-style
:wrapper-style (merge button-input st/address-input-wrapper)
:on-change-text #(dispatch [:set-in [:recover :passphrase] %])}]]))
{:value passphrase
:error error
:error-color color-blue
:label (label :t/passphrase)
:label-color color-gray
:line-color separator-color
:input-style st/input-style
:auto-capitalize :none
:wrapper-style (merge button-input st/address-input-wrapper)
:on-change-text #(dispatch [:set-in [:recover :passphrase] %])}]]))
(defview password-input [password]
[error [:get-in [:recover :password-error]]]

View File

@ -57,5 +57,6 @@
:secure-text-entry true
:label-color :#ffffff80
:line-color :white
:auto-capitalize :none
:input-style st/password-style
:on-change-text #(dispatch [:set-in [:confirm-transactions :password] %])}]]])