This issue related to Xcode 14.x builds from Xcode cloud
Post
Replies
Boosts
Views
Activity
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()
}