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()
}
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags: