henryleunghk / flutter-native-text-input

Native text input for Flutter
MIT License
66 stars 50 forks source link

Censored input? #47

Open thilojaeggi opened 1 year ago

thilojaeggi commented 1 year ago

When using TextContentType.password it would be cool if the input would automatically be censored like obscureText in Flutters Textfield

VictorUvarov commented 11 months ago

It looks like iOS needs to set isSecureTextEntry on the UITextInput and on android needs to set setInputType on the EditText

Edit: Turns out UITextInput.secureTextEntry doesn't work. It needs to be a UITextField