Rendering a List in a drawingGroup

Hi. I have a simple view:

struct ContentView: View {

    var body: some View {
        VStack {
            List {
                Text("Test")
            }
        }
        .drawingGroup()
    }
}

When I run my app I get an error message

Unable to render flattened version of ListRepresentable<SystemListDataSource, SelectionManagerBox>.

and a forbidden symbol:

This happens only with drawingGroup applied. Can't Lists be rendered with Metal?

Rendering a List in a drawingGroup
 
 
Q