Ios 在工具栏项目快捷界面中添加带有图像和文本的按钮

Ios 在工具栏项目快捷界面中添加带有图像和文本的按钮,ios,swift,swiftui,Ios,Swift,Swiftui,我想要和iOS中的提醒应用一模一样的按钮 在代码注释下,我还尝试使用标签和系统映像名称 .toolbar { ToolbarItem(placement: .bottomBar) { Button(action: {}, label: { HStack { Image(systemName: "plus.circle.fill&

我想要和iOS中的提醒应用一模一样的按钮 在代码注释下,我还尝试使用标签和系统映像名称

        .toolbar {
            ToolbarItem(placement: .bottomBar) {
                Button(action: {}, label: {
                    HStack {
                        Image(systemName: "plus.circle.fill")
                        Text("New Reminder")
                    }
                })

            }
        }


运气好吗?我也在努力做到这一点。运气好吗?我也在努力实现这种行为。