leanflutter / local_notifier

This plugin allows Flutter desktop apps to notify local notifications.
MIT License
71 stars 30 forks source link

Make WinToast SHORTCUT_POLICY configurable #16

Closed cbenhagen closed 2 years ago

cbenhagen commented 2 years ago

This fixes #14 && #10.

lijy91 commented 2 years ago

I would add a setup method to let the user choose whether to automatically create shortcuts

await localNotifier.setup(
  appName: 'local_notifier_example',
  // The parameter shortcutPolicy only works on Windows
  shortcutPolicy: ShortcutPolicy.requireCreate,
);
lijy91 commented 2 years ago

Please update to v0.1.5

cbenhagen commented 2 years ago

@lijy91 You're awesome!! Thank you!