From 7582ba4208c0c5c04c96b7ee0d78aae0df46dbab Mon Sep 17 00:00:00 2001 From: kyy Date: Tue, 24 Feb 2026 11:22:45 +0900 Subject: [PATCH] =?UTF-8?q?RP=20=EC=B9=B4=EB=93=9C=20=EB=B1=83=EC=A7=80=20?= =?UTF-8?q?=EA=B0=80=EB=8F=85=EC=84=B1=20=EB=AC=B8=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../features/dashboard/presentation/dashboard_screen.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/userfront/lib/features/dashboard/presentation/dashboard_screen.dart b/userfront/lib/features/dashboard/presentation/dashboard_screen.dart index 565bbbfb..e89e1cfe 100644 --- a/userfront/lib/features/dashboard/presentation/dashboard_screen.dart +++ b/userfront/lib/features/dashboard/presentation/dashboard_screen.dart @@ -1178,16 +1178,16 @@ class _DashboardScreenState extends ConsumerState { Container( padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 4), decoration: BoxDecoration( - color: statusColor.withValues(alpha: 31), + color: statusColor, borderRadius: BorderRadius.circular(999), ), child: Text( item.status == 'active' - ? tr('ui.common.status.active') + ? tr('ui.userfront.dashboard.activity.linked') : tr('ui.userfront.dashboard.status.revoked'), - style: TextStyle( + style: const TextStyle( fontSize: 11, - color: statusColor, + color: Colors.white, fontWeight: FontWeight.w600, ), ),