Post

Replies

Boosts

Views

Activity

Reply to Xcode 13 - Swift compile error
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()                     })                                   }
Oct ’21