♻️ Convert the notification to sheet

This commit is contained in:
2025-10-14 23:44:07 +08:00
parent 9423affa75
commit a83b929d42
4 changed files with 22 additions and 19 deletions

View File

@@ -54,7 +54,11 @@ Widget notificationIndicatorWidget(
trailing: const Icon(Symbols.chevron_right),
contentPadding: EdgeInsets.only(left: 16, right: 15),
onTap: () {
GoRouter.of(context).pushNamed('notifications');
showModalBottomSheet(
context: context,
isScrollControlled: true,
builder: (context) => const NotificationScreen(),
);
},
),
);