Post not yet marked as solved
Post marked as unsolved with 1 replies, 2,423 views
How to remove the spacing between List plain style section in swiftui iOS 15
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!")
} header: {
Text("section")
}
}.listStyle(.plain)
}
}