I've been trying to reduce the space between sections in a list with the GroupedListStyle()
applied without any luck.
Code from above screenshot:
struct ContentView: View {
var body: some View {
List {
Section {
Text("Hello, World!")
Text("Hello, World!")
Text("Hello, World!")
}
Section {
Text("Hello, World!")
}
Section {
Text("Hello, World!")
Text("Hello, World!")
}
}.listStyle(GroupedListStyle())
}
}
Any suggestions would be greatly appreciated.