1

I want to create a Flutter web project. I see two packages listed on the package page. What is the difference between the two? firebase_core and firebase_core_web

Brandon Pillay
  • 986
  • 1
  • 12
  • 28

1 Answers1

5

firebase_core_web is a part of firebase_core, check the dependencies in the pubspec.yaml of source code. If you add firebase_core to your dependencies, it will include firebase_core_web as well. But you have to add different scripts to your index.html as well for Firebase to work on web.

Peter Koltai
  • 8,296
  • 2
  • 10
  • 20