stream image

This commit is contained in:
Felipe
2024-02-16 11:37:12 -05:00
parent d9d6b50d78
commit 1b565d70f4
8 changed files with 129 additions and 211 deletions
+4 -11
View File
@@ -169,29 +169,22 @@ class _SignUpScreenState extends State<SignUpScreen> {
? Colors.green
: Theme.of(context).colorScheme.onBackground),
),
Text(
"⚈ 1 number",
style: TextStyle(
color: containsNumber
? Colors.green
: Theme.of(context).colorScheme.onBackground),
),
],
),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
"1 special character",
"8 minimum character",
style: TextStyle(
color: containsSpecialChar
color: contains8Length
? Colors.green
: Theme.of(context).colorScheme.onBackground),
),
Text(
"8 minimum character",
"1 number",
style: TextStyle(
color: contains8Length
color: containsNumber
? Colors.green
: Theme.of(context).colorScheme.onBackground),
),