Apple SF Symbols All In One
SF Symbols All In One
SF Symbols 3
SF Symbols is a library of iconography designed to integrate seamlessly with San Francisco, the system font for Apple platforms.
SF Symbols 是一个图标库,旨在与 Apple 平台的系统字体 San Francisco 无缝集成。
https://developer.apple.com/sf-symbols/
release
在线搜索 icon 名称
https://developer.apple.com/sf-symbols/release-notes/
demo
struct MyContentView: View {
@State var emojiCount = 6;
let emojis = ["??", "??", "??", "??", "?","??","??","??","??","??","??","??","??","??","??","??","??","??","??","??","??","??","??","??","??","??","??","??","??","??","?","??","??","??","??","??","??","??","??","??","??","??","??","??","??","??","??","??","??"];
var body: some View {
VStack {
HStack {
// struct ForEach where Data : RandomAccessCollection, ID : Hashable
// 动态数组范围,使用 id 防止 emoji 重复导致报错
ForEach (emojis[0.. 1) {
emojiCount -= 1;
}
print("remove \(emojiCount)");
}, label: {
// 系统字体 icon
Image(systemName: "minus.circle");
}
)
Spacer()
Button (
action: {
if(emojiCount < emojis.count) {
emojiCount += 1;
}
print("add \(emojiCount)");
}, label: {
// 系统字体 icon
Image(systemName: "plus.circle");
}
)
}.font(.largeTitle)
}
.padding(.horizontal)
.foregroundColor(.red)
};
}
refs
https://devimages-cdn.apple.com/design/resources/download/SF-Symbols-3.2.dmg
https://devimages-cdn.apple.com/design/resources/download/SF-Symbols-2.1.dmg
?xgqfrms 2012-2020
www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!
原创文章,版权所有??xgqfrms, 禁止转载 ???,侵权必究??!