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
You can also call this function at the end of your VStack (that is inner the List).
It will be an overlay on List Seperator on iOS 14 :)
private func hideDefaultListSeperator() -> some View { Rectangle() .fill(colorScheme == .light ? Color.white : Color.black) .frame(maxHeight: 1) }