pusher_beams 1.0.0 copy "pusher_beams: ^1.0.0" to clipboard
pusher_beams: ^1.0.0 copied to clipboard

outdated

Official Flutter Plugin for Pusher Beams, receive notifications easily on your Flutter application with Pusher Beams.

Pusher Beams for Flutter #

Pub Version GitHub likes popularity pub points

Official Flutter Plugin for Pusher Beams using Pigeon for platform plugin interface and Federated Plugin Architecture.

Table of Contents #

Architecture #

This plugin was developed based on the Federated Plugin Architecture, following packages are included in the plugin:

Flutter Support #

This is the comparison table of functions implemented within this plugin according to the native libraries. (Android, iOS, Web)

iOS Android Web
addDeviceInterest
clearAllState
clearDeviceInterests
getDeviceInterests
onInterestChanges ⬜️
removeDeviceInterest
setDeviceInterests
setUserId
start
stop

Platform Support #

This plugin supports Web, Android and iOS platforms.

Web Support #

  • Chrome (mobile & desktop)
  • Safari (mobile & desktop)
  • Edge (mobile & desktop)
  • Firefox (mobile & desktop)

See Web FAQ

Mobile Support #

  • iOS 10 and above
  • Android 4.4 and above (>= SDK Version 19)

Example #

A fully example using this plugin can be found in this repository, implementing a basic use of most of the functionality included in this plugin.

See Example

Prerequisites #

In order to install this plugin, you must:

Note: You may skip this if you have already installed FlutterFire and you're implementing firebase_messaging on your Flutter application.

Android Additional #

iOS Additional #

Installation #

To install this plugin within you Flutter application, you need to add the package into your pubspec.yaml.

    dependencies:
      pusher_beams: 1.0.0

or with flutter pub

flutter pub add pusher_beams

Initialization #

In order to initialize Pusher Beams, you already have initialized Firebase (FlutterFire), now you can initialize Pusher Beams using the start method as soon as possible (Preferable inside the main function).

void main() async {
  // Some initial code
  // Maybe the firebase initialization...
  
  await PusherBeams.instance.start('YOUR INSTANCE ID');
}

Overall, that's all! ✨ Now you can use the methods described in the API Reference.

API Reference #

If you want to see the API reference in-depth, you may want to see the Official API Reference from pub.dev.

Contributing #

In order to contribute you must first read how to develop flutter plugins, this is the basic knowledge to start.

This repository is following git flow branching model, so in order to contribute, once you fork this project, you must create a fix/ or feature/ branch, which will be pull requested from you once it's ready.

Commits follows the conventional commits standard, which scopes are the follow:

So, in order to commit something you must use a commit message like below:

feat(android): i did something to android code :0

Developing Environment #

  • Flutter >= 2.x.x (running flutter doctor will check if everything is good to start)
  • To contribute on packages/pusher_beams_ios you must be in MacOS and Xcode must be installed

Running The Tests #

There's two major tests, our app-facing package test which is run as Integration Test and our platform-interface package test run as Unit Test

Integration Tests

For integration tests, we use the example app provided in packages/pusher_beams/example. In order to run the integration tests you must complete the prerequisites in the example app which is...

If you already double-check the list above, then you must replace the constant instanceId located on packages/pusher_beams/example/integration_test/pusher_beams_test.dart with a real one from Pusher Beams.

// Code...

const instanceId = 'your-instance-id'; // Replace this with a real instanceId

// More Code...

So that's all! you can now run the integration test with the following command on the example app path (packages/pusher_beams/example):

flutter test integration_test

And for web (Do not forget to read this):

flutter drive \
  --driver=test_driver/integration_test.dart \
  --target=integration_test/pusher_beams_test.dart \
  -d web-server

Unit Tests

In order to run unit tests for packages/pusher_beams_platform_interface you must be in the directory and run the following:

flutter test

Pigeons #

As this plugin platform interface is generated by Pigeon and if you modified the file messages.dart from packages/pusher_beams_platform_interface package, in order to generate a new MethodChannel interface you must run the following command on path packages/pusher_beams_platform_interface:

make

After this command you must go to packages/pusher_beams_platform_interface/lib/method_channel_pusher_beams.dart and extends the class PusherBeamsApi with PusherBeamsPlatform like below:

class PusherBeamsApi extends PusherBeamsPlatform {
  // Pigeon Generated Class Code
}

This will require you to change the methods onInterestChanges and setUserId parameter arg_callbackId to type dynamic in order to accomplish PusherBeamsPlatform definition like below:

  // Class code...
  Future<void> onInterestChanges(dynamic arg_callbackId) async {
    // onInterestChanges generated function code...
  }

  Future<void> setUserId(String arg_userId, BeamsAuthProvider arg_provider, dynamic arg_callbackId) async {
    // setUserId generated function code...
  }
  // More class code...

License #

Copyright (c) 2015 Pusher Ltd. See LICENSE for details.

28
likes
0
pub points
88%
popularity

Publisher

verified publisherpusher.com

Official Flutter Plugin for Pusher Beams, receive notifications easily on your Flutter application with Pusher Beams.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, pusher_beams_android, pusher_beams_ios, pusher_beams_platform_interface, pusher_beams_web, uuid

More

Packages that depend on pusher_beams