Replies: 1 comment
-
AppDelegate 사용을 피할 수 있을 거 같습니다. WindowGroup {
ContentView()
.onOpenURL { store.send(.openURL(url: $0) }
} WindowGroup에서 .sheet 뷰 모디파이러를 바인딩했을 때, 저희가 원하는대로 상태값을 바꼈을 때, sheet가 나오는 지 확인이 필요해보입니다. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
유저가 카카오 톡 링크를 통해 앱을 열었을 때, 다음의 화면이 나타나게 됩니다.
위의 딥링크 처리는 아래의 과정을 거치게 될 것 같은데요
application(_ UIApplication: , open: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:])
에서 이벤트가 발생AppStore<AppState, AppAction>
를 통해 액션을 받아옴AppState.ChildState.presentationState
를 변경해줌으로써 화면 전환이 과정에서 문제될 만한 과정이 있을까요?
Beta Was this translation helpful? Give feedback.
All reactions