So the question is pretty simple and it\'s in the title. I want to remove the line separator in SwiftUI iOS 14. Previously, I was using UITableView().appearance().sep
UITableView().appearance().sep
Here is a demo of possible solution. Tested with Xcode 12b.
List { ForEach(0..<3) { _ in VStack { Text("Hello, World!").padding(.leading) } .frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .leading) .listRowInsets(EdgeInsets()) .background(Color.white) } }