WIP
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user