Hi all,
I'm encountering an issue with push notification deeplinking in my FlutterFlow app. When users tap on a notification, it's not navigating to the correct screen.
Current Setup:
Using Firebase Cloud Messaging (FCM) for push notifications
Notification data payload includes:
screen: "MY-other-users-profile"
param_userId: [user_id_value]
click_action: "FLUTTER_NOTIFICATION_CLICK"
What's Working:
Push notifications are successfully delivered
Users receive the notifications with correct title and body
Badge count appears on the app icon (though it's not clearing, separate issue)
What's Not Working:
Tapping the notification doesn't navigate to the specified screen
The deep link parameters seem to be ignored (?)
API Code
{ "data": { "click_action": "FLUTTER_NOTIFICATION_CLICK", "type": "notification", "screen": "MY-other-users-profile", "param_userId": "[user_id_value]" } }
Questions
Is there a specific format required for the screen name in the payload?
Do I need additional configuration in FlutterFlow for handling deep links from notifications?
Are there any specific debugging steps you recommend?