Unify Input. Remove hardcoded style (login)
This commit is contained in:
parent
6f88a70649
commit
f2ec6ff12a
@ -405,7 +405,6 @@ class DialogTextField extends StatelessWidget {
|
|||||||
child: TextField(
|
child: TextField(
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
labelText: title,
|
labelText: title,
|
||||||
border: const OutlineInputBorder(),
|
|
||||||
prefixIcon: prefixIcon,
|
prefixIcon: prefixIcon,
|
||||||
helperText: helperText,
|
helperText: helperText,
|
||||||
helperMaxLines: 8,
|
helperMaxLines: 8,
|
||||||
@ -635,9 +634,7 @@ Future<bool?> verificationCodeDialog(UserPayload? user) async {
|
|||||||
offstage: user?.email == null,
|
offstage: user?.email == null,
|
||||||
child: TextField(
|
child: TextField(
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
labelText: "Email",
|
labelText: "Email", prefixIcon: Icon(Icons.email)),
|
||||||
prefixIcon: Icon(Icons.email),
|
|
||||||
border: InputBorder.none),
|
|
||||||
readOnly: true,
|
readOnly: true,
|
||||||
controller: TextEditingController(text: user?.email),
|
controller: TextEditingController(text: user?.email),
|
||||||
)),
|
)),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user