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()                     })                                   }
Topic: Media Technologies SubTopic: General Tags:
Oct ’21
Reply to Swift Playgrounds Incompatibility with Xcode 16 Files and Swift Versions
Appreciate the info!
Replies
Boosts
Views
Activity
Dec ’24
Reply to Swift unable to find sound file
Sure! @gchiste, here's the link to download the .swiftpm [https://we.tl/t-t0khs6tqq1)
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Feb ’24
Reply to Swift unable to find sound file
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?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Feb ’24
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()                     })                                   }
Topic: Media Technologies SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’21