No Preview Visible with Apple SwiftUI tutorial

Hi,

I am following Apple's Learning SwiftUI Tutorial. When I open Apple's example App: (specifying-the-view-hierarchy-of-an-app-using-a-scene-sample); MyApp, No preview of any kind is visible. The editor is set to canvas and side by side view. In Apple's tutorial page a black "preview" pill is shown in the right top of the editor, in my app: nothing...

From the tutorial:

My Xcode

I am new to SwiftUI so I have no idea how to solve this.

Can anybody help me?

If you have not this code in the file, add it:

struct ContentView_Previews: PreviewProvider {
    static var previews: some View {
        ContentView()
    }
}
No Preview Visible with Apple SwiftUI tutorial
 
 
Q