Skip to content

Instantly share code, notes, and snippets.

@gahntpo
Created June 21, 2020 07:36
Show Gist options
  • Save gahntpo/cc2efa9c45021d110cbcca221ab8acbd to your computer and use it in GitHub Desktop.
Save gahntpo/cc2efa9c45021d110cbcca221ab8acbd to your computer and use it in GitHub Desktop.
using a class to hold all navigation state variables
import Foundation
class NavigationController: ObservableObject {
@Published var selection: Int = 1
@Published var detailIsShown: Bool = false
@Published var alertIsShown: Bool = false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment