mirror of
https://github.com/NinjaCheetah/RIT-Dining.git
synced 2026-01-17 12:05:57 -05:00
The project and some files were still named that way, so that's been fixed now. The bundle ID is stuck that way forever but oh well. Nobody will see that.
38 lines
1.2 KiB
Swift
38 lines
1.2 KiB
Swift
//
|
|
// MenuDietaryRestrictionsModel.swift
|
|
// TigerDine
|
|
//
|
|
// Created by Campbell on 11/11/25.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
class MenuDietaryRestrictionsModel: ObservableObject {
|
|
var dietaryRestrictions = DietaryRestrictions()
|
|
|
|
// I thought these could be @AppStorage keys but apparently not, because SwiftUI would subscribe to updates from those if
|
|
// they aren't being used directly inside the view.
|
|
@Published var isVegetarian: Bool {
|
|
didSet { UserDefaults.standard.set(isVegetarian, forKey: "isVegetarian") }
|
|
}
|
|
|
|
@Published var isVegan: Bool {
|
|
didSet { UserDefaults.standard.set(isVegan, forKey: "isVegan") }
|
|
}
|
|
|
|
@Published var noBeef: Bool {
|
|
didSet { UserDefaults.standard.set(noBeef, forKey: "noBeef") }
|
|
}
|
|
|
|
@Published var noPork: Bool {
|
|
didSet { UserDefaults.standard.set(noPork, forKey: "noPork") }
|
|
}
|
|
|
|
init() {
|
|
self.isVegetarian = UserDefaults.standard.bool(forKey: "isVegetarian")
|
|
self.isVegan = UserDefaults.standard.bool(forKey: "isVegan")
|
|
self.noBeef = UserDefaults.standard.bool(forKey: "noBeef")
|
|
self.noPork = UserDefaults.standard.bool(forKey: "noPork")
|
|
}
|
|
}
|