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() }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Mar ’23
Reply to Unable to Add for Review - Xcode 15.0.1 - New apps and app updates must be built with the public (GM) versions of Xcode 11 or later
This issue related to Xcode 14.x builds from Xcode cloud
Replies
Boosts
Views
Activity
Nov ’23
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() }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Mar ’23