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,10 +108,8 @@ class const NotificationsPage({
), ),
Align( Align(
alignment: .topRight, alignment: .topRight,
child: Card(
color: Theme.of(context).colorScheme.surfaceContainer,
child: Padding( child: Padding(
padding: .all(12), padding: .all(16),
child: M3EToggleButtonGroup( child: M3EToggleButtonGroup(
selectedIndex: unreadTypeIndex.value, selectedIndex: unreadTypeIndex.value,
onSelectedIndexChanged: (index) => onSelectedIndexChanged: (index) =>
@ -120,7 +118,6 @@ class const NotificationsPage({
), ),
), ),
), ),
),
], ],
), ),
); );