From d8c1a1cf1ad9299bbf1e1eed8a7437ad7d868700 Mon Sep 17 00:00:00 2001 From: 2Math0 Date: Mon, 25 Oct 2021 12:27:54 +0200 Subject: [PATCH] password obscure update fix --- lib/widgets/password_input_field.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/widgets/password_input_field.dart b/lib/widgets/password_input_field.dart index a899255..3934b7e 100644 --- a/lib/widgets/password_input_field.dart +++ b/lib/widgets/password_input_field.dart @@ -42,7 +42,7 @@ class _PasswordInputFieldState extends State { myChild: TextFormField( cursorColor: widget.cursorColor, keyboardType: widget.inputType, - obscureText: true, + obscureText: hidePassword, autofocus: false, controller: widget.textController, validator: widget.validator,