diff options
| author | Christian Cleberg <[email protected]> | 2026-03-14 09:56:39 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-03-14 09:56:39 -0500 |
| commit | c53a320698c17d98477c0384f1f644da9735f645 (patch) | |
| tree | 9c59fa0a2b2840d4531c562e79a89ed526096874 /FoodView.swift | |
| parent | 8e4dea12423d7de762d665d58ab31abb1fe1d4f0 (diff) | |
| download | daybyday-c53a320698c17d98477c0384f1f644da9735f645.tar.gz daybyday-c53a320698c17d98477c0384f1f644da9735f645.tar.bz2 daybyday-c53a320698c17d98477c0384f1f644da9735f645.zip | |
implement more learning categories
Diffstat (limited to 'FoodView.swift')
| -rw-r--r-- | FoodView.swift | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/FoodView.swift b/FoodView.swift new file mode 100644 index 0000000..4ee09d2 --- /dev/null +++ b/FoodView.swift @@ -0,0 +1,29 @@ +// +// FoodView.swift +// DayByDay +// + +import SwiftUI + +/// Displays all 12 fruits and vegetables as large, tappable cards in a scrollable grid. +struct FoodView: View { + private let columns = [ + GridItem(.adaptive(minimum: 280), spacing: 24) + ] + + var body: some View { + ScrollView { + LazyVGrid(columns: columns, spacing: 24) { + ForEach(LearnFood.allCases) { food in + FoodCard(food: food) + .frame(height: 200) + } + } + .padding(32) + } + } +} + +#Preview { + FoodView() +} |
