123456789101112131415 |
- //
- // UserSettings.swift
- // Comedores Sociales
- //
- // Created by Hector Carrion on 11/30/20.
- //
-
- import SwiftUI
-
- class UserSettings: ObservableObject {
- @Published var isAuthenticated: Bool = false
- }
-
- let lightGreyColor = Color(red: 239.0/255.0, green: 243.0/255.0, blue: 244.0/255.0, opacity: 1.0)
- let darkGreyColor = Color(red: 41.0/255.0, green: 42.0/255.0, blue: 47.0/255.0, opacity: 1.0)
|