Ingredients in ingredient lists can now be checked off.
This commit is contained in:
@@ -149,17 +149,37 @@ struct RecipeIngredientSection: View {
|
|||||||
Spacer()
|
Spacer()
|
||||||
}
|
}
|
||||||
ForEach(recipeDetail.recipeIngredient, id: \.self) { ingredient in
|
ForEach(recipeDetail.recipeIngredient, id: \.self) { ingredient in
|
||||||
HStack(alignment: .top) {
|
IngredientListItem(ingredient: ingredient)
|
||||||
Text("\u{2022}")
|
|
||||||
Text("\(ingredient)")
|
|
||||||
.multilineTextAlignment(.leading)
|
|
||||||
}
|
|
||||||
.padding(4)
|
.padding(4)
|
||||||
}
|
}
|
||||||
}.padding()
|
}.padding()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct IngredientListItem: View {
|
||||||
|
@State var ingredient: String
|
||||||
|
@State var isSelected: Bool = false
|
||||||
|
|
||||||
|
var body: some View {
|
||||||
|
HStack(alignment: .top) {
|
||||||
|
if isSelected {
|
||||||
|
Image(systemName: "checkmark.circle")
|
||||||
|
} else {
|
||||||
|
//Text("\u{2022}")
|
||||||
|
Image(systemName: "circle")
|
||||||
|
}
|
||||||
|
Text("\(ingredient)")
|
||||||
|
.multilineTextAlignment(.leading)
|
||||||
|
.lineLimit(5)
|
||||||
|
}
|
||||||
|
.foregroundStyle(isSelected ? Color.secondary : Color.primary)
|
||||||
|
.onTapGesture {
|
||||||
|
isSelected.toggle()
|
||||||
|
}
|
||||||
|
.animation(.easeInOut, value: isSelected)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
struct RecipeToolSection: View {
|
struct RecipeToolSection: View {
|
||||||
@State var recipeDetail: RecipeDetail
|
@State var recipeDetail: RecipeDetail
|
||||||
var body: some View {
|
var body: some View {
|
||||||
|
|||||||
@@ -72,7 +72,8 @@ struct SettingsView: View {
|
|||||||
} footer: {
|
} footer: {
|
||||||
Text("The selected cookbook will open on app launch by default.")
|
Text("The selected cookbook will open on app launch by default.")
|
||||||
}
|
}
|
||||||
Section() {
|
|
||||||
|
Section {
|
||||||
Link("Visit the GitHub page", destination: URL(string: "https://github.com/VincentMeilinger/Nextcloud-Cookbook-iOS")!)
|
Link("Visit the GitHub page", destination: URL(string: "https://github.com/VincentMeilinger/Nextcloud-Cookbook-iOS")!)
|
||||||
} header: {
|
} header: {
|
||||||
Text("About")
|
Text("About")
|
||||||
@@ -80,7 +81,7 @@ struct SettingsView: View {
|
|||||||
Text("If you are interested in contributing to this project or simply wish to review its source code, we encourage you to visit the GitHub repository for this application.")
|
Text("If you are interested in contributing to this project or simply wish to review its source code, we encourage you to visit the GitHub repository for this application.")
|
||||||
}
|
}
|
||||||
|
|
||||||
Section() {
|
Section {
|
||||||
Link("Get support", destination: URL(string: "https://vincentmeilinger.github.io/Nextcloud-Cookbook-Client-Support/")!)
|
Link("Get support", destination: URL(string: "https://vincentmeilinger.github.io/Nextcloud-Cookbook-Client-Support/")!)
|
||||||
} header: {
|
} header: {
|
||||||
Text("Support")
|
Text("Support")
|
||||||
@@ -88,7 +89,7 @@ struct SettingsView: View {
|
|||||||
Text("If you have any inquiries, feedback, or require assistance, please refer to the support page for contact information.")
|
Text("If you have any inquiries, feedback, or require assistance, please refer to the support page for contact information.")
|
||||||
}
|
}
|
||||||
|
|
||||||
Section() {
|
Section {
|
||||||
Button("Log out") {
|
Button("Log out") {
|
||||||
print("Log out.")
|
print("Log out.")
|
||||||
alertType = .LOG_OUT
|
alertType = .LOG_OUT
|
||||||
|
|||||||
Reference in New Issue
Block a user