Stepper not showing in ToolBar on macOS

153 Views Asked by At

On macOS the Stepper is not showing in the toolbar. It works on iOS. Does anybody know a workaround?

struct ContentView: View {
    
    @State private var value = 1
    
    var body: some View {
        NavigationStack {
            Text("Hello")
                .toolbar {
                    // does not show
                    ToolbarItem {
                        Stepper("Test \(value)", value: $value)
                    }
                }
        }
    }
}
0

There are 0 best solutions below