I'm currently receiving APNS and GCM Push Notifications Out-of-App in Xamarin Forms, however have a story for In-App Notifications as well.
Presently, I'm catering for ContentPages, or ContentPages in a NavigationPage, by dynamically adding the notification to the content of the page. It works well.
However, this pattern does not allow me to cater for MasterDetailPages, TabbedPages, or CarouselPages, and as I'm building an SDK, I have to be able to cater for anything that any developer might want to do, out of the box in Xamarin Forms.
Can anyone recommend a pattern to allow a Notification to be displayed In-App in Xamarin Forms for any page whatsoever (including custom pages) that inherit from Page?
Kind regards!