From cd8d551e262b7652890f33695f1cb5024eb9c32e Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Fri, 11 Sep 2026 22:39:18 -0400 Subject: [PATCH] take notif filter out of card --- lib/pages/notifications.dart | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/lib/pages/notifications.dart b/lib/pages/notifications.dart index 0592acd..9b8c9b6 100644 --- a/lib/pages/notifications.dart +++ b/lib/pages/notifications.dart @@ -108,16 +108,13 @@ class const NotificationsPage({ ), Align( alignment: .topRight, - child: Card( - color: Theme.of(context).colorScheme.surfaceContainer, - child: Padding( - padding: .all(12), - child: M3EToggleButtonGroup( - selectedIndex: unreadTypeIndex.value, - onSelectedIndexChanged: (index) => - unreadTypeIndex.value = index ?? unreadTypeIndex.value, - actions: options.keys.toList(), - ), + child: Padding( + padding: .all(16), + child: M3EToggleButtonGroup( + selectedIndex: unreadTypeIndex.value, + onSelectedIndexChanged: (index) => + unreadTypeIndex.value = index ?? unreadTypeIndex.value, + actions: options.keys.toList(), ), ), ),