chore: Make error text on email orange and set displayname
This commit is contained in:
parent
c518c9c344
commit
e5c29eedfe
3 changed files with 17 additions and 3 deletions
|
|
@ -20,6 +20,7 @@ abstract class FluffyThemes {
|
|||
String? hintText,
|
||||
Widget? suffixIcon,
|
||||
Widget? prefixIcon,
|
||||
Color? errorColor,
|
||||
}) =>
|
||||
InputDecoration(
|
||||
border: OutlineInputBorder(
|
||||
|
|
@ -36,12 +37,12 @@ abstract class FluffyThemes {
|
|||
errorText: errorText,
|
||||
errorMaxLines: 4,
|
||||
errorStyle: TextStyle(
|
||||
color: Colors.red.shade200,
|
||||
color: errorColor ?? Colors.redAccent.shade200,
|
||||
shadows: const [
|
||||
Shadow(
|
||||
color: Colors.black,
|
||||
offset: Offset(0, 0),
|
||||
blurRadius: 5,
|
||||
blurRadius: 10,
|
||||
),
|
||||
],
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue