nearby_messages_api 0.0.1 copy "nearby_messages_api: ^0.0.1" to clipboard
nearby_messages_api: ^0.0.1 copied to clipboard

outdated

Google Nearby Messages API for Flutter

nearby_messages_api #

Google Nearby Messages API for Flutter

Installation #

First, add nearby_messages_api as a dependency in your pubspec.yaml file.

###iOS Coming Soon

###Android

Get and add a google cloud nearby messages API key to your project https://developers.google.com/nearby/messages/android/get-started

###Example

import 'package:nearby_messages_api/nearby_messages_api.dart';

class main {
    /**
    * This method gets the message when an a nearby device sends one
    */
    static void onFound(dynamic arguments) {
      print(arguments);
    }
    
    /**
    * This method gets the message when a nearby device leaves
    */
    static void onLost(dynamic arguments) {
      print(arguments);
    }
    
    NearbyMessagesApi nearbyMessagesApi = NearbyMessagesApi(onFound, onLost);
    
    Future<void> main() async {
      await nearbyMessagesApi.backgroundSubscribe();
    }
    
    Future<void> dispose() async {
      await nearbyMessagesApi.backgroundUnsubscribe();
    }
}
5
likes
0
points
56
downloads

Publisher

unverified uploader

Weekly Downloads

Google Nearby Messages API for Flutter

Homepage

License

unknown (license)

Dependencies

flutter

More

Packages that depend on nearby_messages_api

Packages that implement nearby_messages_api