IconEditText
IconEditText copied to clipboard
"isPassword = true" seems doesn't work
"isPassword = true" seems doesn't work I change code to
_editText.setInputType(
_isPassword ? (InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD)
: InputType.TYPE_TEXT_FLAG_AUTO_CORRECT
);
And it work now.