[DynamicLink iOS] Make it work with SceneDelegate #8877
Unanswered
ankiimation
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I have integrated Flutter Firebase Dynamic Link successfully in my Project.
But when I using SceneDelegate (available since iOS 13.4), Dynamic Link cant receive on Flutter.
What do i need to make it work?
Thanks everyone <3
func scene(_ scene: UIScene, continue userActivity: NSUserActivity) { if let url = userActivity.webpageURL{ //TODO: Flutter Firebase Dynamic Link Handle } }
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { if let url = connectionOptions.userActivities.first?.webpageURL{ //TODO: Flutter Firebase Dynamic Link Handle } }
Beta Was this translation helpful? Give feedback.
All reactions