How to change background color in List in SwiftUI for macOS

Issue #595

SwiftUI uses ListCoreScrollView and ListCoreClipView under the hood. For now the workaround, is to avoid using List

1
2
3
List {
ForEach
}

use

1
2
3
VStack {
ForEach
}

Updated at 2020-08-14 07:26:27

Comments