8

I have just seen on Firebase that a new feature has been released called In-App Messaging. Is there already an idea somewhere how to get this to work with Flutter?

Peter Haddad
  • 78,874
  • 25
  • 140
  • 134
Ben
  • 650
  • 2
  • 12
  • 23

1 Answers1

6

No, you cannot use it with flutter yet. A flutter plugin needs to be created to be able to use the In-App Messaging API

You can check all flutter plugins that enable Flutter apps to use one or more Firebase services here:

https://github.com/FirebaseExtended/flutterfire


EDIT

The flutter in-app messaging plugin is now available! You can find more information about in the following link:

https://pub.dev/packages/firebase_in_app_messaging

Community
  • 1
  • 1
Peter Haddad
  • 78,874
  • 25
  • 140
  • 134
  • 2
    Will keep my eyes open for the flutter plugin then – Ben Aug 18 '18 at 12:25
  • but a people here say he can use inapp messaging, please see https://stackoverflow.com/questions/51893994/flutter-firebase-in-app-messaging/56676344#56676344 – questionasker Jun 26 '19 at 07:47
  • 1
    You can use `in app messaging` but you need to configure it on your own in the `build.gradle` for android and in the `pod file` for ios. For example if you check this link https://firebase.google.com/docs/in-app-messaging/get-started?platform=android, then using the firebase console you can send a message @anunixercoder – Peter Haddad Jun 26 '19 at 08:25
  • What you *cannot* do is this https://firebase.google.com/docs/in-app-messaging/modify-message-behavior you cant modify what happens if the users interacts with the message @anunixercoder – Peter Haddad Jun 26 '19 at 08:27
  • @anunixercoder in the end the in app message is created in the firebase console, so by connecting your app to the console and adding firebase in buiild.gradle or pod file you can send an in app message but again as I said you cannot modify the behaviour https://firebase.google.com/docs/in-app-messaging/modify-message-behavior – Peter Haddad Jun 26 '19 at 08:36
  • In app messaging is now available in flutter check out the plugin https://pub.dev/packages/firebase_in_app_messaging – Md Sadab Wasim Sep 04 '19 at 04:05