42 lines
862 B
Swift
42 lines
862 B
Swift
//
|
|
// RecipeToolSection.swift
|
|
// Nextcloud Cookbook iOS Client
|
|
//
|
|
// Created by Vincent Meilinger on 01.03.24.
|
|
//
|
|
|
|
import Foundation
|
|
import SwiftUI
|
|
|
|
// MARK: - RecipeView Tool Section
|
|
|
|
struct RecipeToolSection: View {
|
|
@Bindable var recipe: Recipe
|
|
@Binding var editMode: Bool
|
|
@Binding var presentToolEditView: Bool
|
|
|
|
var body: some View {
|
|
VStack(alignment: .leading) {
|
|
HStack {
|
|
SecondaryLabel(text: "Tools")
|
|
Spacer()
|
|
}
|
|
|
|
RecipeListSection(list: $recipe.tools)
|
|
|
|
if editMode {
|
|
Button {
|
|
presentToolEditView.toggle()
|
|
} label: {
|
|
Text("Edit")
|
|
}
|
|
.buttonStyle(.borderedProminent)
|
|
}
|
|
}.padding()
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|