WidgetKit - 与文本和图像的链接
Posted
技术标签:
【中文标题】WidgetKit - 与文本和图像的链接【英文标题】:WidgetKit - Link with text and image 【发布时间】:2021-10-20 16:24:06 【问题描述】:我正在尝试创建这样的东西:
这是我目前得到的:
Link(destination: URL(string: "xxxx")!)
Text("Lock")
.foregroundColor(Color.white)
.font(.caption)
.padding(EdgeInsets(top: 10, leading: 10, bottom: 10, trailing: 10))
.background(Color.gray)
.cornerRadius(15)
我的头像:
但是如何在其中添加锁定图像?
【问题讨论】:
【参考方案1】:您可以使用系统映像
HStack(spacing: 4)
Image(systemName: "lock.open.fill")
Text("Lock")
.foregroundColor(Color.white)
.font(.caption)
.padding(EdgeInsets(top: 10, leading: 10, bottom: 10, trailing: 10))
.background(Color.gray)
.cornerRadius(15)
【讨论】:
以上是关于WidgetKit - 与文本和图像的链接的主要内容,如果未能解决你的问题,请参考以下文章