We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac8d000 commit f52a690Copy full SHA for f52a690
EatHub/EatHub/Modules/Home/HomeView.swift
@@ -29,12 +29,23 @@ struct HomeView: View {
29
30
ScrollView(.vertical) {
31
VStack(alignment: .leading, spacing: Constants.listSpacing) {
32
+
33
+ Text("Последнее")
34
+ .font(.title2)
35
+ .fontWeight(.semibold)
36
+ .padding(.horizontal)
37
HorizontalListSection(meals: viewModel.horizontalMeals) { meal in
38
withAnimation(.easeInOut(duration: Constants.animationDuration)) {
39
selectedMeal = meal
40
showDetail = true
41
}
42
43
44
+ Text("Случайное")
45
46
47
48
+ .padding(.vertical)
49
VerticalListSection(
50
meals: viewModel.verticalMeals,
51
namespace: animationNamespace
0 commit comments