[Android] Password field's last typed char disappears too quickly
See original GitHub issueVersion
Tell us which versions you are using:
- tcomb-form-native v0.4.0
- react-native v0.24.0
Expected behaviour
Typing in a TextInput with option { password: true, secureTextEntry: true }
should consistently show the last typed character until the next character input.
Actual behaviour
After the first typed character, the last typed character is shown but disappears almost instantly.
Only seen in Android. iOS is OK
Issue Analytics
- State:
- Created 7 years ago
- Comments:8 (2 by maintainers)
Top Results From Across the Web
android - How to switch between hide and view password
You can customize your password toggle by using: app:passwordToggleDrawable - Drawable to use as the password input visibility toggle icon. app: ...
Read more >Handle input method visibility | Android Developers
When input focus moves in or out of an editable text field, Android shows or hides the input method—such as the on-screen keyboard—as ......
Read more >The ultimate guide to text fields in Flutter - LogRocket Blog
In Flutter, there are two types of text field widgets that we can use to ... of this property will show dots to...
Read more ><input type="email"> - HTML: HyperText Markup Language
pattern. The pattern attribute, when specified, is a regular expression that the input's value must match in order for the value to ...
Read more >Fixed issues in InDesign - Adobe Support
Adobe Help search bar in the Control panel forwards scrambled text to the internet browser. Characters in a text composition go missing when...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@imalbert @alvaromb making the vanilla TextInput a controlled component shows the same behavior of the tcomb TextInput. Also https://github.com/facebook/react-native/issues?utf8=✓&q=secureTextEntry. Going to tag this as an upstream issue.
Thank you very much 😄