Home > Net >  what's the difference between firebase_messaging_web and firebase_messaging, which one should b
what's the difference between firebase_messaging_web and firebase_messaging, which one should b

Time:09-30

I have a flutter project and I want to integrate firebase push notification in it. I checked pub.dev and I found two official packages for firebase_messaging the default one and the web version. I'm planning to use same code-base for web, android and ios. In this case which package should I user?

CodePudding user response:

you need to integrate just firebase_messaging plugin it also support web as well, whenever you reached package home page always check its support label which are mentioned on top kindly check attached screenshot of website for your reference. enter image description here

and firebase_messaging_web only use for web so, you just need to integrate firebase_messaging not both.

  • Related