How are push notifications handled in Mendix?

0
So I have managed to get push notifications working for my native mobile application. I am able to send notifications, but I do not fully understand how their handling works.   For example, how do I redirect a user to a different page after tapping on a notification? The SendMessage action only has a Context property, which I assume is for passing data. How do I specify what page the user goes to, though? And how do I "catch" the notification in my application in order to do such an action? Do I add a Notification object as a page parameter and it gets populated after the notification is opened? I tried to look around, but this was not explained anywhere.
asked
1 answers
0

You need to build the handling yourself i.e. show page or do stuff. I believe you can catch the notification in your application with the On receive action in the notifications widget.

Screenshot 2024-10-01 092258.png

answered