我想按钮完全一样在提醒应用程序在iOS下面的代码说明工作,我还尝试使用标签和系统图像名称.
.toolbar {
ToolbarItem(placement: .bottomBar) {
Button(action: {}, label: {
HStack {
Image(systemName: "plus.circle.fill")
Text("New Reminder")
}
})
}
}
2条答案
按热度按时间voase2hg1#
创建自定义标签样式
然后您可以使用标签的自定义样式
gpnt7bae2#
这对我很有效,关键是使用
.buttonstyle(.plain)
,并将所有内容嵌入到HStack
中,并使用Spacer()
将按钮向右推。Text and Icon button