Close Menu
  • Home
  • AI
  • Big Data
  • Cloud Computing
  • iOS Development
  • IoT
  • IT/ Cybersecurity
  • Tech
    • Nanotechnology
    • Green Technology
    • Apple
    • Software Development
    • Software Engineering

Subscribe to Updates

Get the latest technology news from Bigteetechhub about IT, Cybersecurity and Big Data.

    What's Hot

    The starkly uneven reality of enterprise AI adoption

    March 31, 2026

    The Silicon Valley congressional race is getting ugly

    March 31, 2026

    Airport delays: Security lines improve as TSA agents gets paid

    March 31, 2026
    Facebook X (Twitter) Instagram
    Facebook X (Twitter) Instagram
    Big Tee Tech Hub
    • Home
    • AI
    • Big Data
    • Cloud Computing
    • iOS Development
    • IoT
    • IT/ Cybersecurity
    • Tech
      • Nanotechnology
      • Green Technology
      • Apple
      • Software Development
      • Software Engineering
    Big Tee Tech Hub
    Home»iOS Development»ios – SwiftUI-Button: Complete VStack clickable
    iOS Development

    ios – SwiftUI-Button: Complete VStack clickable

    big tee tech hubBy big tee tech hubDecember 26, 2025061 Min Read
    Share Facebook Twitter Pinterest Copy Link LinkedIn Tumblr Email Telegram WhatsApp
    Follow Us
    Google News Flipboard
    ios – SwiftUI-Button: Complete VStack clickable
    Share
    Facebook Twitter LinkedIn Pinterest Email Copy Link


    I made this SwiftUI-View. Only the button shall trigger the code, but the whole VStack reacts when it becomes tapped. Means: the code within the Button-closure is executed. One can say, that the whole VStack-content is clickable.

    How can I restrict the code, contained in the Button-closure, to only the button? Respectively: What’s the reason for this weird behavior?

    ForEach(filteredTasks, id: \.self) { task in
                        VStack(alignment: .leading) {
                            VStack {
                                Text(task.title)
                                    .bold()
                                Text(task.desc)
                                    .lineLimit(2)
                            }.strikethrough(task.status == Status.done.rawValue)
                            LabeledContent {
                                Text(dateFormatter.string(from: task.createdAt))
                                    .lineLimit(2)
                            } label: {
                                Text("Created at: ")
                            }
                            LabeledContent {
                                Text(dateFormatter.string(from: task.modifiedAt))
                                    .lineLimit(2)
                            } label: {
                                Text("Deleted at: ")
                            }
                            Button {
                                if task.hasBeenDeleted == true {
                                    task.hasBeenDeleted = false
                                } else {
                                    task.status = Status.open.rawValue
                                }
                                do {
                                    try context.save()
                                } catch {
                                    print(error)
                                }
                                filteredTasks = tasks
                            } label: {
                                Label("Recreate", systemImage:  "trash")
                                    .frame(height: 40)
                                    .frame(maxWidth: .infinity)
                                    .background(.blue)
                                    .foregroundStyle(.white)
                                    .fontWeight(.bold)
                                    .clipShape(RoundedRectangle(cornerRadius: 8))
                            }
                        }
                    }
    
    



    Source link

    clickable Complete iOS SwiftUIButton VStack
    Follow on Google News Follow on Flipboard
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email Copy Link
    tonirufai
    big tee tech hub
    • Website

    Related Posts

    SwiftButler | Cocoanetics

    March 31, 2026

    How to detect shelf horizontal angle deviation in a mobile app? (iOS and Android)

    March 30, 2026

    ios – How to change toolbar title color in SwiftUI when running on macOS Catalyst?

    March 29, 2026
    Add A Comment
    Leave A Reply Cancel Reply

    Editors Picks

    The starkly uneven reality of enterprise AI adoption

    March 31, 2026

    The Silicon Valley congressional race is getting ugly

    March 31, 2026

    Airport delays: Security lines improve as TSA agents gets paid

    March 31, 2026

    Royal Mail and Loganair launch UK’s first electric mail flights across Scotland

    March 31, 2026
    About Us
    About Us

    Welcome To big tee tech hub. Big tee tech hub is a Professional seo tools Platform. Here we will provide you only interesting content, which you will like very much. We’re dedicated to providing you the best of seo tools, with a focus on dependability and tools. We’re working to turn our passion for seo tools into a booming online website. We hope you enjoy our seo tools as much as we enjoy offering them to you.

    Don't Miss!

    The starkly uneven reality of enterprise AI adoption

    March 31, 2026

    The Silicon Valley congressional race is getting ugly

    March 31, 2026

    Subscribe to Updates

    Get the latest technology news from Bigteetechhub about IT, Cybersecurity and Big Data.

      • About Us
      • Contact Us
      • Disclaimer
      • Privacy Policy
      • Terms and Conditions
      © 2026 bigteetechhub.All Right Reserved

      Type above and press Enter to search. Press Esc to cancel.