Skip to content

Instantly share code, notes, and snippets.

@grenos
Last active February 24, 2021 09:53
Show Gist options
  • Save grenos/c3429d862b2d6c4e900aee02ab555086 to your computer and use it in GitHub Desktop.
Save grenos/c3429d862b2d6c4e900aee02ab555086 to your computer and use it in GitHub Desktop.
swiftui-medium-001
class SessionObject: ObservableObject {
// global modal content
@Published var isGlobalError: Bool = false
@Published var isGlobalPopup: Bool = false
@Published var image: String = ""
@Published var title: String = ""
@Published var subtitle: String = ""
@Published var buttonTitle: String = ""
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment