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

    Medicare’s new payment model is built for AI, and most of the tech world has no idea

    May 13, 2026

    ios – How to achieve the UI of the search tab in the App Store in Swift?

    May 13, 2026

    Introducing Azure Accelerate for Databases: Modernize your data for AI with experts and investments

    May 13, 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

    ios – How to achieve the UI of the search tab in the App Store in Swift?

    May 13, 2026

    ios – How to add shadow to border?

    May 12, 2026

    My Outer Loop | Cocoanetics

    May 11, 2026
    Add A Comment
    Leave A Reply Cancel Reply

    Editors Picks

    Medicare’s new payment model is built for AI, and most of the tech world has no idea

    May 13, 2026

    ios – How to achieve the UI of the search tab in the App Store in Swift?

    May 13, 2026

    Introducing Azure Accelerate for Databases: Modernize your data for AI with experts and investments

    May 13, 2026

    AWS expands Anthropic partnership with Claude Platform launch

    May 12, 2026
    Timer Code
    15 Second Timer for Articles
    20
    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!

    Medicare’s new payment model is built for AI, and most of the tech world has no idea

    May 13, 2026

    ios – How to achieve the UI of the search tab in the App Store in Swift?

    May 13, 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.