how to implement flutter web local notification?

1k Views Asked by At

I'm wondering if I can implement local notification in flutter web? I saw that I can create local notification for mobile app Android or IOS but is it possible to use it for web app? or any other alternative to accomplish it?

1

There are 1 best solutions below

3
On

Just use the class Notification in dart:html package. You can do something like this:

import 'dart:html' as web;

Future<void> showNotification( String message ) async {
  var permission = web.Notification.permission;
  if (permission != 'granted') {
    permission = await web.Notification.requestPermission();
  }
  if (permission == 'granted') {
    web.Notification( message );
  }    
}

More info about the javascript notification API here: https://developer.mozilla.org/en-US/docs/Web/API/Notifications_API/Using_the_Notifications_API