From 6e312cc5fdc7aa36e99e8f6c53fdad33cb10f3aa Mon Sep 17 00:00:00 2001 From: kyy Date: Tue, 7 Apr 2026 14:19:50 +0900 Subject: [PATCH] =?UTF-8?q?=EC=A0=91=EC=86=8D=EC=9D=B4=EB=A0=A5=20?= =?UTF-8?q?=ED=86=A0=EA=B8=80/=EC=8A=A4=EC=9C=84=EC=B9=98=20=EC=A1=B0?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../presentation/dashboard_screen.dart | 22 ++++++++++++------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/userfront/lib/features/dashboard/presentation/dashboard_screen.dart b/userfront/lib/features/dashboard/presentation/dashboard_screen.dart index 2aca33e6..b201bdd8 100644 --- a/userfront/lib/features/dashboard/presentation/dashboard_screen.dart +++ b/userfront/lib/features/dashboard/presentation/dashboard_screen.dart @@ -1622,18 +1622,24 @@ class _DashboardScreenState extends ConsumerState { Text( tr('ui.userfront.audit.filter.toggle_label'), style: const TextStyle( - fontSize: 13, + fontSize: 14, fontWeight: FontWeight.w600, color: _ink, ), ), - Switch( - value: _showActiveSessionsOnly, - onChanged: (value) { - setState(() { - _showActiveSessionsOnly = value; - }); - }, + const SizedBox(width: 2), + Transform.scale( + scale: 0.84, + alignment: Alignment.centerRight, + child: Switch( + materialTapTargetSize: MaterialTapTargetSize.shrinkWrap, + value: _showActiveSessionsOnly, + onChanged: (value) { + setState(() { + _showActiveSessionsOnly = value; + }); + }, + ), ), ], ),