nalexn/clean-architecture-swiftui

Deeplink first run App

Rofl113 opened this issue · 1 comments

Add to file SceneDelegate:

func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
  // ...
  // Check Url
  if connectionOptions.urlContext.isEmpty == false {
    systemEventsHandler?.sceneOpenURLContexts(connectionOptions.urlContext)
  }
}

I've added that, thanks!