Remove blue color in forgot button
This commit is contained in:
parent
353b088566
commit
542bd55e51
1 changed files with 4 additions and 2 deletions
|
@ -111,8 +111,10 @@ class LoginFormState extends State<LoginForm> {
|
||||||
child: ElevatedButton(
|
child: ElevatedButton(
|
||||||
onPressed: () {},
|
onPressed: () {},
|
||||||
style: ButtonStyle(
|
style: ButtonStyle(
|
||||||
padding:
|
backgroundColor: MaterialStateProperty.all(const Color(0xff212226)),
|
||||||
MaterialStateProperty.all(const EdgeInsets.only(right: 0.0))),
|
padding: MaterialStateProperty.all(const EdgeInsets.only(right: 0.0)),
|
||||||
|
elevation: MaterialStateProperty.all(0.0)
|
||||||
|
),
|
||||||
child: const Text(
|
child: const Text(
|
||||||
'Forgot Password?',
|
'Forgot Password?',
|
||||||
style: kLabelStyle,
|
style: kLabelStyle,
|
||||||
|
|
Loading…
Reference in a new issue