UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

onDrag conflicts with clicks on macOS

Forums > SwiftUI

I have a list of navigation links that I want to be draggable. However, it seems like onDrag conflicts with mouse clicks on macOS (iOS is fine).

Here's some sample code:

import SwiftUI
struct ContentView: View {
    var items = ["Peter", "Mark", "Joe", "Frank", "Tim"]

    @State var selected: String?

    var body: some View {
        NavigationView {
            List {
                ForEach(items, id: \.self) { item in
                    NavigationLink(destination: Text(item), tag: item, selection: $selected, label: {
                        Text(item)
                            .onDrag { () -> NSItemProvider in
                                return NSItemProvider(object: String(item) as NSString)
                            }
                    })

                }
            }
            Text("")
        }
    }
}

Here's the weird part: if you click on the text, the item doesn't get selected and the link seems disabled. However, if you click on a section of the item that is empty (outside the text), then it works!

Again, this works just fine on iOS. Is this a SwiftUI bug/limitation or am I doing it wrong?

Thanks!

2      

Hacking with Swift is sponsored by RevenueCat.

SPONSORED Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure your entire paywall view without any code changes or app updates.

Learn more here

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.