1
0
forked from baron/baron-sso

접속이력 토글/스위치 조정

This commit is contained in:
2026-04-07 14:19:50 +09:00
parent 2fb7bae5f6
commit 6e312cc5fd

View File

@@ -1622,12 +1622,17 @@ class _DashboardScreenState extends ConsumerState<DashboardScreen> {
Text( Text(
tr('ui.userfront.audit.filter.toggle_label'), tr('ui.userfront.audit.filter.toggle_label'),
style: const TextStyle( style: const TextStyle(
fontSize: 13, fontSize: 14,
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
color: _ink, color: _ink,
), ),
), ),
Switch( const SizedBox(width: 2),
Transform.scale(
scale: 0.84,
alignment: Alignment.centerRight,
child: Switch(
materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,
value: _showActiveSessionsOnly, value: _showActiveSessionsOnly,
onChanged: (value) { onChanged: (value) {
setState(() { setState(() {
@@ -1635,6 +1640,7 @@ class _DashboardScreenState extends ConsumerState<DashboardScreen> {
}); });
}, },
), ),
),
], ],
), ),
], ],