From 4b6326dd950acb29a1a4830101924b86be80b5ac Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Mon, 23 Feb 2026 17:02:22 +0800 Subject: [PATCH] Updated widget --- lib/widgets/button_widget.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/widgets/button_widget.dart b/lib/widgets/button_widget.dart index 3c9d50f..e6f1994 100644 --- a/lib/widgets/button_widget.dart +++ b/lib/widgets/button_widget.dart @@ -13,8 +13,8 @@ class ButtonWidget extends StatelessWidget { Widget build(BuildContext context) { return ElevatedButton( style: ElevatedButton.styleFrom( - foregroundColor: const Color.fromRGBO(250, 250, 250, 1), // text color - backgroundColor: disabled ? const Color.fromARGB(112, 13, 109, 253) : const Color(0xff0d6efd), + foregroundColor: const Color.fromRGBO(250, 250, 250, 1), + backgroundColor: disabled ? const Color.fromRGBO(13, 109, 253, 0.435) : const Color.fromRGBO(13, 109, 253, 0.8), elevation: disabled ? 0 : 4, shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(8), // rounded corners