bnotify_flutter 0.1.0 copy "bnotify_flutter: ^0.1.0" to clipboard
bnotify_flutter: ^0.1.0 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.

Document Audience
Live Flutter guide Add BNotify to any Flutter app
integration.md Same host setup, Markdown
Documentation.md Plugin architecture (Dart API, channels, Android/iOS bridges)

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

Install #

dependencies:
  bnotify_flutter: ^0.1.0
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());
}

Source: GitLab BNotifyFlutterSDK

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
0
points
128
downloads

Documentation

Documentation

Publisher

unverified uploader

Weekly Downloads

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

Homepage
Repository (GitLab)
View/report issues

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