Ever since updating to iOS 14, I get additional padding (in red) in my List that I didn't see on iOS 13:
Is this a known issue of iOS 14 ? How can I fix this ?
var body: some View {
        NavigationView {
            VStack(alignment: .leading){
                List {
                   // Content goes here
                   // Mostly text and buttons
                }
            }.navigationBarTitle(Text("settings.title"), displayMode: .inline)
       }
}

