No Description

UserSettings.swift 398B

123456789101112131415
  1. //
  2. // UserSettings.swift
  3. // Comedores Sociales
  4. //
  5. // Created by Hector Carrion on 11/30/20.
  6. //
  7. import SwiftUI
  8. class UserSettings: ObservableObject {
  9. @Published var isAuthenticated: Bool = false
  10. }
  11. let lightGreyColor = Color(red: 239.0/255.0, green: 243.0/255.0, blue: 244.0/255.0, opacity: 1.0)
  12. let darkGreyColor = Color(red: 41.0/255.0, green: 42.0/255.0, blue: 47.0/255.0, opacity: 1.0)