Is there a way to show specific compose-screen whe...
# multiplatform
m
Is there a way to show specific compose-screen when push notification is activated? Currently, it seems that deep-links are not yet supported in KMP Compose NavGraph. But even if they were... What is the recommended way to show custom (compose) view when push notification is activated - for example notification-info-view or product-details view (in the context of ie WebShop app...)?
In the end I implemented iOS push notifications support from scratch: • without KMPNotifier • show ProductDetailsViewController which wraps Compose view when notification is received For Android I used KMPNotifier and use dedicated Activity for ProductDetails, activit wraps ProductDetails compose screen More info in actual commits: for iOS: https://github.com/mcicak/laboratory/commit/91057ca23acd23bb72734b0ac0f230c13e3ee3c4 for Android: https://github.com/mcicak/laboratory/commit/4662e5464c91d4f5f704448457a7103ec5f49700
h
@Marko Čičak where is notification permission in android and ios?