This commit is contained in:
Daniel Arantes Loverde
2026-02-06 09:51:53 -03:00
parent 379bb35cfa
commit 92c2a67736
13 changed files with 574 additions and 138 deletions

View File

@@ -6,6 +6,14 @@ struct AppState {
var cart = CartState()
var address = AddressState()
var favorites = FavoritesState()
var activeModal: AppModal? = nil
}
enum AppModal: String, Identifiable {
case addressPicker
case filters
var id: String { rawValue }
}
struct SessionState {