From 542bd55e515274daa5a916140321aa105ac2ccd7 Mon Sep 17 00:00:00 2001 From: Moe Date: Thu, 12 May 2022 22:40:33 +0700 Subject: [PATCH] Remove blue color in forgot button --- lib/components/login_form.dart | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/components/login_form.dart b/lib/components/login_form.dart index 6a28007..c9b2f76 100644 --- a/lib/components/login_form.dart +++ b/lib/components/login_form.dart @@ -111,8 +111,10 @@ class LoginFormState extends State { 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,