Post

Replies

Boosts

Views

Activity

Reply to How to create a scrollable list in which the items can be edited, reordered, added, and removed?
List(outboundExample, id: \.tag) { outboundObject in Text(outboundObject.tag) } .navigationTitle("Servers:") .listStyle(.bordered(alternatesRowBackgrounds: true)) .moveDisabled(false) .frame(width: 100.0) .padding() HStack { Button { //add row action } label: { Image(systemName: "plus") } Button { //remove row action } label: { Image(systemName: "minus") } Spacer() }
Mar ’23