bnotify_flutter 0.1.1 copy "bnotify_flutter: ^0.1.1" to clipboard
bnotify_flutter: ^0.1.1 copied to clipboard

BNotify Flutter plugin wrapping the native Android and iOS SDKs for push notifications and in-app messaging.

bnotify_flutter #

Flutter plugin for BNotify push notifications and in-app messaging.

pub.dev: https://pub.dev/packages/bnotify_flutter

This package wraps the native SDKs:

Web is not included. The plugin Git repository is private (not open source). Install from pub.dev.

Document Audience
Live Flutter guide Add BNotify to any Flutter app
integration.md Same host setup, Markdown (included in the package)
Documentation.md Plugin architecture notes (package maintainers)

Console: https://console.bnotify.com/

Install #

dependencies:
  bnotify_flutter: ^0.1.1
flutter pub get

Follow integration.md or the hosted Flutter guide for Console files, Android BNotifyFlutterActivity, iOS plist / Push, and Dart BNotify.initialize.

import 'package:bnotify_flutter/bnotify_flutter.dart';

Future<void> main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await BNotify.initialize(configAsset: 'assets/bnotify-config.json');
  BNotify.onClick.listen((click) {
    // Route with click.screen
  });
  runApp(const MyApp());
}

Example #

See example/. Replace placeholder credentials in:

  • example/assets/bnotify-config.json
  • example/android/app/bnotify-config.json
  • example/ios/Runner/bnotify-config.plist
0
likes
140
points
128
downloads

Documentation

Documentation
API reference

Publisher

unverified uploader

Weekly Downloads

BNotify Flutter plugin wrapping the native Android and iOS SDKs for push notifications and in-app messaging.

Homepage

Topics

#notifications #push-notifications #messaging

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on bnotify_flutter

Packages that implement bnotify_flutter