Post

Replies

Boosts

Views

Activity

Reply to How can I use multiple `.alert` dialog in SwiftUI?
here some example but I do not know how I will add two delete method to one .alert dialog struct AlertInfo: Identifiable { enum AlertType { case one case two } let id: AlertType let title: String let message: String } struct ContentView6: View { // 2 @State private var info: AlertInfo? var body: some View { VStack { Button("Alert 1") { // 3 info = AlertInfo( id: .one, title: "Title 1", message: "Message 1") } Button("Alert 2") { // 4 info = AlertInfo( id: .two, title: "Title 2", message: "Message 2") } } .alert(item: $info, content: { info in // 5 Alert(title: Text(info.title), message: Text(info.message)) }) } }
Mar ’22
Reply to How can I use the searchable feature for my row data in SwiftUI?
HStack{                           Text(data.user)                   .searchable(text: $searchText, placement: .navigationBarDrawer)                   .font(.caption)                   .foregroundColor(.black)               } model: struct Recent: Identifiable {   var id = UUID().uuidString   var user: String    } let data= [   Recent(user: "skysoft1"),   Recent(user: "skysoft2"),   Recent(user: "skysoft3"), ]
Sep ’21
Reply to Trailing closure passed to parameter of type 'Int' that does not accept a closure
on line 2 I get error, in TabView , and  how onboardingData and OnboardingCard are defined it is defined as OnboardingCard: fileprivate struct OnboardingCard: View {   let onboardingItem: OnboardingItem     var body: some View {       VStack {         Image(onboardingItem.imageName)          .resizable()         .frame(width:340, height:340)                 Text(onboardingItem.title)         .font(.title)           .foregroundColor(.black)         .bold()         .padding()         Text(onboardingItem.description)         .multilineTextAlignment(.center)         .font(.body)         .foregroundColor(.gray)         .padding (.horizontal, 15)         }        }        } onboardingData:   var onboardingData: [OnboardingItem] = [   OnboardingItem(imageName: "image1", title: "Welcome1", description: "description1"),   OnboardingItem(imageName: "image2", title: "Welcome2", description: "description2"),     OnboardingItem(imageName: "image3", title: "Welcome3", description: "description3"),   OnboardingItem(imageName: "image4", title: "Welcome4", description: "description4")   ]
Aug ’21