fcm_config 3.5.3 copy "fcm_config: ^3.5.3" to clipboard
fcm_config: ^3.5.3 copied to clipboard

This flutter package is made to merge between firebase_messaging package and flutter_local_notifications

fcm_config #

What can this packge do #

  • Show fcm notification while app is in forground
  • Easly recieve incoming notification where you are
  • Easly recieve clicked where you are
  • Notification is an object

Setup #

Android #

  • after or befaore this
 <meta-data android:name="flutterEmbedding" android:value="2" />
  • set this
<meta-data
  android:name="com.google.firebase.messaging.default_notification_channel_id"
  android:value="high_importance_channel" /> 

you can change to your own value high_importance_channel but note it will be used later

  • if you want to change default icon you can do this
 <meta-data android:name="com.google.firebase.messaging.default_notification_icon" android:resource="@mipmap/custom_icon" />
  • you can change @mipmap/custom_icon to any icon from mipmap or drawable its up to you but note this will be applied for background only
  • you can set foreground from dart code

Ios #

MacOs #

Web #



Dart/Flutter #

Initialize

  void main() async {
      await FCMConfig.instance
      .init(
          defaultAndroidForegroundIcon: '@mipmap/ic_launcher', //default is @mipmap/ic_launcher
          defaultAndroidChannel: AndroidNotificationChannel(
            'high_importance_channel',// same as value from android setup
            'Fcm config',
            importance: Importance.high,
            sound: RawResourceAndroidNotificationSound('notification'),
          ),
      );
      runApp(MaterialApp(
        home: MyHomePage(),
      ));
  }

Background messages(Web not supported)

  • To handle message in background you can do that
    Future<void> _firebaseMessagingBackgroundHandler(RemoteMessage message) async {
     print("Handling a background message: ${message.messageId}");
    }
      
    void main() async {
      FCMConfig.instance.init(onBackgroundMessage:_firebaseMessagingBackgroundHandler);
      runApp(MaterialApp(
        home: MyHomePage(),
      ));
    }

Get token

  FCMConfig.instance.messaging.getToken().then((token) {
        print(token);
   });

To get notification that launched the application

  await  FCMConfig.instance.getInitialMessage();// may be null
 

Listen to incomming notification :

  • First option
   class MyScreen extends StatelessWidget {
     @override
     Widget build(BuildContext context) {
       return FCMNotificationListener(
         onNotification:
             (RemoteMessage notification, void Function() setState) {},
         child: SizedBox(),
       );
     }
   }
  • Second option
   class MyScreen extends StatefulWidget {
     @override
     _MyScreenState createState() => _MyScreenState();
   }
   
   class _MyScreenState extends State<MyScreen>
       with FCMNotificationMixin {
     @override
     Widget build(BuildContext context) {
       return SizedBox();
     }
   
     @override
     void onNotify(RemoteMessage notification) {
       // do some thing
     }
   }
   

Listen to notification tap:

  • First option
   class MyScreen extends StatelessWidget {
     @override
     Widget build(BuildContext context) {
       return FCMNotificationClickListener(
         onNotificationClick:
             (RemoteMessage notification, void Function() setState) {},
         child: SizedBox(),
       );
     }
   }
  • Second option
   class MyScreen extends StatefulWidget {
     @override
     _MyScreenState createState() => _MyScreenState();
   }
   
   class _MyScreenState extends State<MyScreen>
       with FCMNotificationClickMixin {
     @override
     Widget build(BuildContext context) {
       return SizedBox();
     }
   
     @override
     void onClick(RemoteMessage notification) {
       // do some thing
     }
   }
   

Localize your notification #

see https://pub.dev/packages/fcm_localization

127
likes
130
pub points
91%
popularity

Publisher

verified publishernew-step-apps.com

This flutter package is made to merge between firebase_messaging package and flutter_local_notifications

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

firebase_core, firebase_messaging, flutter, flutter_local_notifications, http, path_provider

More

Packages that depend on fcm_config