We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31d5388 commit 61c6709Copy full SHA for 61c6709
1 file changed
TableProMobile/TableProMobile/TableProMobileApp.swift
@@ -21,16 +21,18 @@ struct TableProMobileApp: App {
21
if let connection = appState.activeConnection {
22
ConnectedTabView(connection: connection)
23
.id(connection.id)
24
+ .transition(.move(edge: .trailing))
25
} else {
26
NavigationStack {
27
ConnectionListView()
28
}
29
+ .transition(.move(edge: .leading))
30
31
32
OnboardingView()
33
34
- .animation(.default, value: appState.activeConnection?.id)
35
+ .animation(.easeInOut(duration: 0.3), value: appState.activeConnection?.id)
36
.environment(appState)
37
.onOpenURL { url in
38
guard url.scheme == "tablepro",
0 commit comments