fcm_config 3.0.0-nullsafety.6 fcm_config: ^3.0.0-nullsafety.6 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 #
-
Follow steps here https://firebase.flutter.dev/docs/installation/android
Ios #
-
Follow steps here https://firebase.flutter.dev/docs/installation/ios
-
Then here https://firebase.flutter.dev/docs/messaging/apple-integration
- iOS 10 is now the minimum supported version by FlutterFire. Please update your build target version.
MacOs #
-
Follow steps here https://firebase.flutter.dev/docs/installation/macos
-
Then here https://firebase.flutter.dev/docs/messaging/apple-integration
Web #
-
Follow steps here https://firebase.flutter.dev/docs/installation/web
-
Add fcm js liberary like here https://firebase.flutter.dev/docs/messaging/overview#5-web-only-add-the-sdk
-
Add firebase-messaging-sw.js in your web folder see the example to see what this file contains
Dart/Flutter #
Initialize
await FCMConfig.init();
//or if you need to listen background notification
//Pass top level function
Future<void> _firebaseMessagingBackgroundHandler(RemoteMessage message) async {
print("Handling a background message: ${message.messageId}");
}
void main() async {
FCMConfig.init(onBackgroundMessage: _firebaseMessagingBackgroundHandler);
runApp(MaterialApp(
home: MyHomePage(),
));
}
- To know more about background handler please https://firebase.flutter.dev/docs/messaging/usage#background-messages
Get token
FCMConfig.getToken().then((token) {
print(token);
});
To get notification that launched the application
await FCMConfig.getInitialMessage();// may be null
Now to 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 } }
To listen notification tap there is
FCMNotificationClickListener
andFCMNotificationClickMixin
but be aware that its recommended to use it in main screen
Localize your notification #
Till that moment firbase_messaging plugin dont give any option to localize notification according to app locale So we cand do this workaround
1- First you have to insure your locale are save using any package like shared_prefrence
2- Add the following lines to the didFinishLaunchingWithOptions
method in the AppDelegate.m/AppDelegate.swift file of your iOS project
Objective-C:
if (@available(iOS 10.0, *)) {
[UNUserNotificationCenter currentNotificationCenter].delegate = (id<UNUserNotificationCenterDelegate>) self;
}
Swift:
if #available(iOS 10.0, *) {
UNUserNotificationCenter.current().delegate = self as? UNUserNotificationCenterDelegate
}
3- You have to make sure that the notification not send with notification object just data this will prevent the default notification to be displayed example
{
"data":{
"title_key":"New_Order_Title",
"body_key":"New_Order_Body",
"body_args":"150",
}
}
4- Use background handler to view your translated notification
Map<String, Map<String, String>> translations = {
"ar": {
"New_Order_Title": "طلب جديد",
"New_Order_Body": "لديك طلب جديد برقم{args}",
},
"en": {
"New_Order_Title": "New order",
"New_Order_Body": "You has new order with number {args}",
}
};
Future<void> _firebaseMessagingBackgroundHandler(
RemoteMessage _notification) async {
var strings = translations[(await getSavedLocale()).languageCode];
if (strings == null) strings = translations["en"];
String title = strings[_notification.data["title_key"]];
String body = strings[_notification.data["body_key"]]
.replaceAll("{args}", _notification.data["body_args"]);
LocaleNotification.displayNotification(title: title, body: body);
}
Future<Locale> getSavedLocale() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
await prefs.reload();
var locale = prefs.containsKey("locale") ? prefs.getString("locale") : null;
return Locale(locale ?? Platform.localeName);
}
void main() async {
FCMConfig.init(onBackgroundMessage: _firebaseMessagingBackgroundHandler);
runApp(MaterialApp(
home: MyHomePage(),
));
}