mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-12-25 15:02:33 +01:00
fix: Format
This commit is contained in:
parent
46b886ffc1
commit
9e5fb7075d
@ -130,7 +130,8 @@ class _SignUpPasswordState extends State<SignUpPassword> {
|
|||||||
ListTile(
|
ListTile(
|
||||||
leading: CircleAvatar(
|
leading: CircleAvatar(
|
||||||
backgroundColor: Colors.white,
|
backgroundColor: Colors.white,
|
||||||
child: Icon(Icons.lock_outlined, color: Theme.of(context).primaryColor),
|
child: Icon(Icons.lock_outlined,
|
||||||
|
color: Theme.of(context).primaryColor),
|
||||||
),
|
),
|
||||||
title: TextField(
|
title: TextField(
|
||||||
controller: passwordController,
|
controller: passwordController,
|
||||||
@ -142,8 +143,9 @@ class _SignUpPasswordState extends State<SignUpPassword> {
|
|||||||
hintText: '****',
|
hintText: '****',
|
||||||
errorText: passwordError,
|
errorText: passwordError,
|
||||||
suffixIcon: IconButton(
|
suffixIcon: IconButton(
|
||||||
icon: Icon(
|
icon: Icon(showPassword
|
||||||
showPassword ? Icons.visibility_off_outlined : Icons.visibility_outlined),
|
? Icons.visibility_off_outlined
|
||||||
|
: Icons.visibility_outlined),
|
||||||
onPressed: () =>
|
onPressed: () =>
|
||||||
setState(() => showPassword = !showPassword),
|
setState(() => showPassword = !showPassword),
|
||||||
),
|
),
|
||||||
|
Loading…
Reference in New Issue
Block a user