gpt4 book ai didi

ios - 在 ToolbarItem SwiftUI 中添加带有图像和文本的按钮

转载 作者:行者123 更新时间:2023-12-05 07:00:32 25 4
gpt4 key购买 nike

我想要的按钮与 iOS 中的提醒应用程序完全一样在代码注释工作下方,我还尝试使用标签和系统图像名称。

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

}
}

enter image description here

enter image description here

最佳答案

创建自定义标签样式

struct VerticalLabelStyle: LabelStyle {
func makeBody(configuration: Configuration) -> some View {
VStack {
configuration.icon.font(.headline)
configuration.title.font(.footnote)
}
}
}

然后你可以为你的标签使用自定义样式

Button(action: {}, label: {
Label("Home", systemImage: "house")
.labelStyle(VerticalLabelStyle())
})

icon with title underneath

关于ios - 在 ToolbarItem SwiftUI 中添加带有图像和文本的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64085819/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com