Last active
February 24, 2021 09:53
-
-
Save grenos/c3429d862b2d6c4e900aee02ab555086 to your computer and use it in GitHub Desktop.
swiftui-medium-001
This file contains hidden or 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
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