SwiftUI Table does not render in popup

I have a small example app which uses a context menu to open an editor view. The screenshot below is from Xcodes Preview.

When I run the application the Table is not rendered. See below:

The code can be downloaded from Github/TableBug

Answered by hjbflyer in 825874022

Finally I have found a work around. Just append the

.frame(height: 200.0) 

modifier to the VStack with a value large enough to display the table. If the value is too small, the table won't be rendered.

Accepted Answer

Finally I have found a work around. Just append the

.frame(height: 200.0) 

modifier to the VStack with a value large enough to display the table. If the value is too small, the table won't be rendered.

SwiftUI Table does not render in popup
 
 
Q