flutter_broadcasts 0.4.0 copy "flutter_broadcasts: ^0.4.0" to clipboard
flutter_broadcasts: ^0.4.0 copied to clipboard

A plugin for sending and receiving broadcasts with Android intents and iOS notifications.

Flutter Broadcasts #

A plugin for sending and receiving broadcasts with Android intents and iOS notifications. The API is inspired by Android's BroadcastReceivers and uses the NotificationCenter internally on iOS.

Quick Start #

First install the package via pub.dev. Then subscribe to broadcasts like this:

BroadcastReceiver receiver = BroadcastReceiver(
  names: <String>["de.kevlatus.broadcast"],
);
receiver.messages.listen(print);
receiver.start();

Roadmap #

This package is currently under construction. Below you can find a quick overview of its implementation status. Contributions are welcome, if you are missing features.

  • implement broadcast receiver on Android
  • implement broadcast sending on Android
  • implement NSNotificationCenter subscriptions on iOS
  • implement NSNotificationCenter notifications on iOS

Contributions #

Contributions are much appreciated, but keep in mind that this package is supposed to be generic and only expose native broadcast APIs like Android's BroadcastReceivers and the iOS NotificiationCenter. Consider creating separate packages for sending and receiving specific broadcast instances.

If you have any ideas for extending this package to other platforms, feel free to open a pull request or raise an issue.

22
likes
130
pub points
92%
popularity

Publisher

verified publisherkevlatus.de

A plugin for sending and receiving broadcasts with Android intents and iOS notifications.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_broadcasts