fresh start
This commit is contained in:
parent
34e8e7ad45
commit
a478324698
43 changed files with 227 additions and 102 deletions
|
|
@ -21,8 +21,9 @@ class _MyPassFieldState extends State<MyPassField> {
|
|||
void _toggleObscured() {
|
||||
setState(() {
|
||||
_obscured = !_obscured;
|
||||
if (textFieldFocusNode.hasPrimaryFocus)
|
||||
if (textFieldFocusNode.hasPrimaryFocus) {
|
||||
return; // If focus is on text field, dont unfocus
|
||||
}
|
||||
textFieldFocusNode.canRequestFocus =
|
||||
false; // Prevents focus if tap on eye
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue