I\'ve created a simple List as below, but there are extra separators below it.
List
List { Text(\"Item 1\") Text(\"Item 2\") Text(\"Item 3\")
Here's one way.
List { Section(footer: Text(""))) { Text("One") Text("Two") Text("Three") } }
Instead of the Text view in the footer, you can create your own. Note -I tried EmptyView() but that doesn't actually remove the redundant separators.