Last active
April 15, 2020 01:21
-
-
Save mahmudahsan/b522249d4b6434e86d870981da099788 to your computer and use it in GitHub Desktop.
SwiftUI: How to Pop to TabView From NavigationView #2 https://thinkdiff.net/ios/swiftui-how-to-pop-to-tabview-from-navigationview/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import Combine | |
class AppState: ObservableObject { | |
func reloadDashboard() { | |
(UIApplication.shared.connectedScenes.first?.delegate as? SceneDelegate)?.reloadDashboard() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment