SwiftUI toolbar is completely broken at watchOS

.toolbar on watchOS app with beta 3 does not appearing on the screen.


This cove below was working in watchOS 7 beta 2 and still working on iOS 14 beta 3, but doesn't working on watchOS beta 3.
Code Block swift
struct ContentView: View {
    var body: some View {
        NavigationView {
            List {
                ForEach(0..<16) { i in
                    Text("Item \(i)")
                }
            }
            .navigationTitle("Items")
            .toolbar {
                Button {
                    print("Tapped")
                } label: {
                    Label("Create Workout", systemImage: "plus.circle")
                }
            }
        }
    }
}



FB8105560
SwiftUI toolbar is completely broken at watchOS
 
 
Q