Closed
Description
On Android it is possible to get a Keyboard with letters and numbers visible at the same time through the property textVisiblePassword
In Flutter, we use a TextField with the property obscureText: true
to get the password behavior, so there is no TextInputType
relative to the password field, so we can not achieve the same effect when using the textVisiblePassword
property
Sample
TextField(controller: textController, keyboardType: TextInputType.textWithNumber)