take notif filter out of card

This commit is contained in:
Henry Hiles 2026-09-11 22:39:18 -04:00
commit cd8d551e26
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -108,16 +108,13 @@ class const NotificationsPage({
), ),
Align( Align(
alignment: .topRight, alignment: .topRight,
child: Card( child: Padding(
color: Theme.of(context).colorScheme.surfaceContainer, padding: .all(16),
child: Padding( child: M3EToggleButtonGroup(
padding: .all(12), selectedIndex: unreadTypeIndex.value,
child: M3EToggleButtonGroup( onSelectedIndexChanged: (index) =>
selectedIndex: unreadTypeIndex.value, unreadTypeIndex.value = index ?? unreadTypeIndex.value,
onSelectedIndexChanged: (index) => actions: options.keys.toList(),
unreadTypeIndex.value = index ?? unreadTypeIndex.value,
actions: options.keys.toList(),
),
), ),
), ),
), ),