watchOS 多个工具栏项

watchOS multiple toolbar items

我的目标是在我的 WatchOS 应用程序中将 2 个按钮作为工具栏项,但即使我将它们分组到一个工具栏组中或将多个工具栏项单独放置,也只会显示一个。知道这里出了什么问题吗?

.toolbar {
    ToolbarItem {
        Button("1") {
        }
    }
    ToolbarItem {
        Button("2") {
        }
    }
}

.toolbar {
    ToolbarGroup {
        Button("1") {
        }
        Button("2") {
        }
    }
}

好的,找到了。将它们放在堆叠(V 或 H)中有效

.toolbar {
    ToolbarGroup {
        VStack {
            Button("1") {
            }
            Button("2") {
            }
        } 
    }
}