Hello There,
I have got Push Notifications working in FFLow, by following https://docs.flutterflow.io/settings-and-integrations/app-settings/push-notifications
Also I am able to queue notification from backend by posting document into /ff_push_notifications/ folder
E.g. If I write lower document in 'ff_push_notifications' folder
{initial_page_name : "LiveSubscObjDetailsPage",notification_text : "Paid",notification_title : "Paid by customer", parameter_data : { "param1":"value1"}, user_refs :"/ServiceProviders/qXsU7jIjjGZvyXnQJM2d31XR3qT2"}
I can see LiveSubscObjDetailsPage launched, BUT if User is already on same page, new instance is launched.
How do I ensure page maintains single instance? I don't want new instance created when notification is received.