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,
|
color: Colors.white60,
|
||||||
),
|
),
|
||||||
borderRadius: BorderRadius.circular(10.0)),
|
borderRadius: BorderRadius.circular(10.0)),
|
||||||
contentPadding: EdgeInsets.only(top: 14.0),
|
contentPadding: const EdgeInsets.only(top: 14.0),
|
||||||
prefixIcon: Icon(
|
prefixIcon: const Icon(
|
||||||
Icons.email,
|
Icons.email,
|
||||||
color: Colors.white,
|
color: Colors.white,
|
||||||
),
|
),
|
||||||
|
@ -108,8 +108,8 @@ class LoginFormState extends State<LoginForm> {
|
||||||
),
|
),
|
||||||
borderRadius: BorderRadius.circular(10.0)),
|
borderRadius: BorderRadius.circular(10.0)),
|
||||||
border: InputBorder.none,
|
border: InputBorder.none,
|
||||||
contentPadding: EdgeInsets.only(top: 14.0),
|
contentPadding: const EdgeInsets.only(top: 14.0),
|
||||||
prefixIcon: Icon(
|
prefixIcon: const Icon(
|
||||||
Icons.lock,
|
Icons.lock,
|
||||||
color: Colors.white,
|
color: Colors.white,
|
||||||
),
|
),
|
||||||
|
@ -369,7 +369,7 @@ class LoginFormState extends State<LoginForm> {
|
||||||
style: TextStyle(color: Colors.white),
|
style: TextStyle(color: Colors.white),
|
||||||
),
|
),
|
||||||
content: const Text(
|
content: const Text(
|
||||||
"Blalaala",
|
"The Password You Entered Is Wrong !",
|
||||||
style: TextStyle(color: Colors.white70),
|
style: TextStyle(color: Colors.white70),
|
||||||
),
|
),
|
||||||
actions: [
|
actions: [
|
||||||
|
|
Loading…
Reference in a new issue