flutter-native-text-input icon indicating copy to clipboard operation
flutter-native-text-input copied to clipboard

Censored input?

Open thilojaeggi opened this issue 2 years ago • 1 comments

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

thilojaeggi avatar Apr 28 '23 15:04 thilojaeggi

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

VictorUvarov avatar Nov 20 '23 18:11 VictorUvarov