From 8ebec15324cf146b3b206e259be7b370a46de543 Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Fri, 11 Sep 2026 22:41:38 -0400 Subject: [PATCH] hide label whe not selected for filter --- lib/pages/notifications.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pages/notifications.dart b/lib/pages/notifications.dart index 9b8c9b6..a59c120 100644 --- a/lib/pages/notifications.dart +++ b/lib/pages/notifications.dart @@ -20,11 +20,11 @@ class const NotificationsPage({ Widget build(BuildContext context, WidgetRef ref) { final options = { M3EToggleButtonGroupAction( - label: Text("Mentions"), + checkedLabel: Text("Mentions"), icon: Icon(Icons.alternate_email), ): .highlight, M3EToggleButtonGroupAction( - label: Text("All Notifications"), + checkedLabel: Text("All Notifications"), icon: Icon(Icons.notifications), ): .notify, };