Looks like iOS 13.5 introduced a new bug, this is not reproducible in iOS 13.3. When using the following code and turn to landscape mode with device that has notch, the text inside the list gets cut off. Does anyone have any workaround or fix? Filed a bug report to Apple.
Code Block swift var body: some View { List { Text("Some Text") } .listStyle(GroupedListStyle()) .environment(\.horizontalSizeClass, .regular) }