Appreciate the info!
Post
Replies
Boosts
Views
Activity
Sure! @gchiste, here's the link to download the .swiftpm [https://we.tl/t-t0khs6tqq1)
Hi @gchiste, thank you for the answer!
I've selected "Soundeffects" and add a folder with "+" at the bottom. Named "Resources" and drag and dropped the file.
Still doesn't work, am I missing something?
HStack {
Image(.system("line.horizontal.3.circle.fill")) // error
.font(.largeTitle, weight: .bold). // error
.foregroundColor(.primary)
.onTapGesture {
self.showsettings.toggle()
}
Text("Explore")
.font(.largeTitle, weight: .bold) // error
.padding(.leading,20)
Spacer()
Button(action: {self.showGuide.toggle()}) {
Image(.system("questionmark")) //error
.foregroundColor(.white)
.font(.system(size: 16, weight: .medium))
.frame(width: 42, height: 42)
.clipShape(Circle())
} .padding(.trailing,20)
.sheet(isPresented: self.$showGuide, content: {
GuideView()
})
}