From 5380130b8ef1e47acd1eb388c49fc40cfe009f41 Mon Sep 17 00:00:00 2001 From: axtlos Date: Thu, 31 Mar 2022 23:56:52 +0200 Subject: [PATCH] tests finished, all works, make password fields not show user input --- lib/functions/users.dart | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/functions/users.dart b/lib/functions/users.dart index 1bbf49f..d9682af 100644 --- a/lib/functions/users.dart +++ b/lib/functions/users.dart @@ -118,6 +118,7 @@ Widget users( prefixIconColor: Colors.white, suffixIconColor: Colors.white, ), + obscureText: true, style: const TextStyle( color: Colors.white, ), @@ -141,6 +142,8 @@ Widget users( prefixIconColor: Colors.white, suffixIconColor: Colors.white, ), + obscureText: true, + style: const TextStyle( color: Colors.white, ), @@ -238,6 +241,8 @@ Widget users( style: const TextStyle( color: Colors.white, ), + obscureText: true, + onChanged: (String? value) { setRootPass(value); }, @@ -265,6 +270,8 @@ Widget users( style: const TextStyle( color: Colors.white, ), + obscureText: true, + onChanged: (String? value) { setConfirmRootPass(value); },