mirror of
https://github.com/inventree/inventree-app.git
synced 2025-06-12 02:05:29 +00:00
Update API for marking a notification as "read" (#228)
This commit is contained in:
@ -43,6 +43,9 @@ class _NotificationState extends RefreshableState<NotificationWidget> {
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Dismiss an individual notification entry (mark it as "read")
|
||||
*/
|
||||
Future<void> dismissNotification(BuildContext context, InvenTreeNotification notification) async {
|
||||
|
||||
await notification.dismiss();
|
||||
@ -51,6 +54,9 @@ class _NotificationState extends RefreshableState<NotificationWidget> {
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
* Display an individual notification message
|
||||
*/
|
||||
List<Widget> renderNotifications(BuildContext context) {
|
||||
|
||||
List<Widget> tiles = [];
|
||||
|
Reference in New Issue
Block a user