Ok, changed it to
struct ContentView: View {
var body: some View {
TabView{
Group{
List{
Text("Item 1")
Text("Item 2")
Text("Item 3")
}
}
.tabItem {
Image(systemName: "list.dash")
Text("Transactions")
}
Group{
List{
Text("Item 11")
Text("Item 12")
Text("Item 13")
}
}
.tabItem {
Image(systemName: "list.dash")
Text("Summary")
}
}.navigationTitle("Transactions")
.navigationBarBackButtonHidden(true)
}
}
and now it looks better but after switching to the other tab and back, its broken again (see clip below)
https://imgur.com/a/BfiofU1