flutter_fcm 0.0.14 copy "flutter_fcm: ^0.0.14" to clipboard
flutter_fcm: ^0.0.14 copied to clipboard

outdated

Firebase Cloud Messaging (FCM) Flutter package.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_fcm/flutter_fcm.dart';


void main() {
  Messaging.initFCM();
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter FCM Example',
      theme: ThemeData(

        primarySwatch: Colors.blue,
      ),
      home: MyHomePage( ),
    );
  }
}
class MyHomePage extends StatefulWidget {
  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Container();
  }
}

class Messaging {
  static String token;
  static initFCM()async{
    try{
      await FCM.initializeFCM(
          onNotificationPressed: (Map<String, dynamic> data) {
            print(data);
          },
          onTokenChanged: (String token) {
            Messaging.token = token;
            print(token);
          },
          icon: 'icon'
      );
    }catch(e){}
  }
}