Skip to content

Instantly share code, notes, and snippets.

@benlmyers
Created September 15, 2022 01:05
Show Gist options
  • Save benlmyers/78da5b9486dbc06f22777211ef5224a4 to your computer and use it in GitHub Desktop.
Save benlmyers/78da5b9486dbc06f22777211ef5224a4 to your computer and use it in GitHub Desktop.
//
// Global.swift
// MVVM-SwiftUI
//
// Created by Ben Myers on 9/14/22.
//
import SwiftUI
class Global: ObservableObject {
// MARK: - Wrapped Properties
/// The user's name.
@Published var userName: String = "Ben Myers"
// MARK: - Properties
var userIsGuest: Bool {
return userName == "Guest"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment