Issue #595
SwiftUI uses ListCoreScrollView
and ListCoreClipView
under the hood. For now the workaround, is to avoid using List
List {
ForEach
}
use
VStack {
ForEach
}
Issue #595
SwiftUI uses ListCoreScrollView
and ListCoreClipView
under the hood. For now the workaround, is to avoid using List
List {
ForEach
}
use
VStack {
ForEach
}