Objective: Send deep link using push notification. Flutter app will receive deep link through push notification and navigate to specific screen.
Planned to use firebase dynamic link to achieve above objective. But firebase is going to depreciated from August, 25, 2025.
Can someone help on other way to achieve the above objective in flutter. Alternate to firebase dynamic link in flutter.
Expectation: Send deep link using push notification. Flutter app will receive deep link through push notification and navigate to specific screen.
Tried: Firebase dynamic link
Expectation: Send deep link using push notification. Flutter app will receive deep link through push notification and navigate to specific screen.
Yes, a Flutter app can receive a deep link through a push notification and navigate to a specific screen.
The main steps:
The
"screen"key in thedatamap is the deep link that will be used to navigate to a specific screen in your Flutter app Source.FirebaseMessaging.onMessageOpenedApp:This will listens for when a message is opened from a push notification and then navigates to the screen specified in the
"screen"key of the message's data Source.You can also check for incoming link in your app: