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(
|
||||
onPressed: () {},
|
||||
style: ButtonStyle(
|
||||
padding:
|
||||
MaterialStateProperty.all(const EdgeInsets.only(right: 0.0))),
|
||||
backgroundColor: MaterialStateProperty.all(const Color(0xff212226)),
|
||||
padding: MaterialStateProperty.all(const EdgeInsets.only(right: 0.0)),
|
||||
elevation: MaterialStateProperty.all(0.0)
|
||||
),
|
||||
child: const Text(
|
||||
'Forgot Password?',
|
||||
style: kLabelStyle,
|
||||
|
|
Loading…
Reference in a new issue