This commit is contained in:
Trey t
2023-07-03 22:24:05 -05:00
parent 3f51a8a952
commit d142389805
2 changed files with 16 additions and 3 deletions

View File

@@ -16,7 +16,14 @@ struct CreateWorkoutMainView: View {
VStack {
TextField("Title", text: $viewModel.title)
.padding()
TextField("Description", text: $viewModel.description)
.frame(height: 55)
.textFieldStyle(PlainTextFieldStyle())
.padding([.horizontal], 4)
.overlay(RoundedRectangle(cornerRadius: 16).stroke(Color(uiColor: .clear))).background(Color(uiColor: .init(red: 200/255, green: 200/255, blue: 200/255, alpha: 0.2)))
.cornerRadius(8)
List() {
ForEach($viewModel.superSets, id: \.id) { superset in
Section {