take notif filter out of card
This commit is contained in:
parent
118e5a5826
commit
cd8d551e26
1 changed files with 7 additions and 10 deletions
|
|
@ -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(),
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue