Firebase Cloud Messaging & Notifications
Send and receive push notifications in your Flutter app using Firebase Cloud Messaging, handling foreground, background and tapped states.
Why Push Notifications?
Firebase Cloud Messaging (FCM) lets your server send push notifications to users even when the app is closed. It is key for re-engagement and real-time alerts.
Adding the Package
Add firebase_messaging to your dependencies. You should already have firebase_core set up from earlier lessons.
dependencies:
firebase_core: ^2.0.0
firebase_messaging: ^14.0.0All lessons in this course
- Firebase Setup & Auth
- Cloud Firestore Database
- Cloud Storage & Functions
- Firebase Cloud Messaging & Notifications