From 521db729d16bc47e1affbbf9b921a0efffa88196 Mon Sep 17 00:00:00 2001 From: Van Leemput Dayron Date: Wed, 1 Oct 2025 00:50:43 +0200 Subject: [PATCH] Fix error --- lib/pages/login.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pages/login.dart b/lib/pages/login.dart index 8b621c8..0efa3eb 100644 --- a/lib/pages/login.dart +++ b/lib/pages/login.dart @@ -262,7 +262,7 @@ class _LoginPageState extends State { shape: BoxShape.circle, boxShadow: [ BoxShadow( - color: Colors.grey.withOpacity(0.3), + color: Colors.grey.withValues(alpha: 0.3), spreadRadius: 1, blurRadius: 3, offset: Offset(0, 1), @@ -307,7 +307,7 @@ class _LoginPageState extends State { shape: BoxShape.circle, boxShadow: [ BoxShadow( - color: Colors.grey.withOpacity(0.3), + color: Colors.grey.withValues(alpha: 0.3), spreadRadius: 1, blurRadius: 3, offset: Offset(0, 1),