woodemi / quick.flutter

53 stars 62 forks source link

QuickNotify not functional in macos #79

Open Baghdady92 opened 1 year ago

Baghdady92 commented 1 year ago

hello everyone i'm trying to make quicknotify work in mac os i'm getting request to access notification then i'm not getting any notification same code working on web and windows

     var hasPermission = await QuickNotify.hasPermission();
         print('hasPermission $hasPermission');
         var requestPermission = await QuickNotify.requestPermission();
        print('requestPermission $requestPermission');
        await QuickNotify.notify(
         title: 'title',
         content: 'welcome',
         );
jimodelid commented 1 year ago

I've got the same issue, or well... I get the notification but it seems to be of lowest priority so it does not "alert". I have to open the notification panel to view the notification.

Would be great to have this fixed.