Fix eror message login screen
This commit is contained in:
parent
e99b63adf5
commit
1f2eac4bc4
1 changed files with 5 additions and 5 deletions
|
@ -63,8 +63,8 @@ class LoginFormState extends State<LoginForm> {
|
|||
color: Colors.white60,
|
||||
),
|
||||
borderRadius: BorderRadius.circular(10.0)),
|
||||
contentPadding: EdgeInsets.only(top: 14.0),
|
||||
prefixIcon: Icon(
|
||||
contentPadding: const EdgeInsets.only(top: 14.0),
|
||||
prefixIcon: const Icon(
|
||||
Icons.email,
|
||||
color: Colors.white,
|
||||
),
|
||||
|
@ -108,8 +108,8 @@ class LoginFormState extends State<LoginForm> {
|
|||
),
|
||||
borderRadius: BorderRadius.circular(10.0)),
|
||||
border: InputBorder.none,
|
||||
contentPadding: EdgeInsets.only(top: 14.0),
|
||||
prefixIcon: Icon(
|
||||
contentPadding: const EdgeInsets.only(top: 14.0),
|
||||
prefixIcon: const Icon(
|
||||
Icons.lock,
|
||||
color: Colors.white,
|
||||
),
|
||||
|
@ -369,7 +369,7 @@ class LoginFormState extends State<LoginForm> {
|
|||
style: TextStyle(color: Colors.white),
|
||||
),
|
||||
content: const Text(
|
||||
"Blalaala",
|
||||
"The Password You Entered Is Wrong !",
|
||||
style: TextStyle(color: Colors.white70),
|
||||
),
|
||||
actions: [
|
||||
|
|
Loading…
Reference in a new issue