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()
})
}
Topic:
Media Technologies
SubTopic:
General
Tags: