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

A problem with dragGesture in ScrollView.

Forums > SwiftUI

I wrote a View that consists of LeftView and a RightView, there is a Circle() in each view, but the RightView has an extra ScrollView.

When I drag the Circle(), the left Circle() can be moved to anyway I want, but the right one is limited by ScrollView.

As the picture show below(Left one is before being moved, right one is after being moved): Befor move After be moved

The following is my code:

// Main view

struct QuestionDemoView: View {
    var body: some View {
        HStack {
            LeftView()
                .border(.red, width: 1)
            RightView()
                .border(.red, width: 1)
        }
    }
}

struct LeftView: View {
    var body: some View {
        ShapeView()
    }
}

struct RightView: View {
    var body: some View {
        ScrollView {
            ShapeView()
        }
    }
}
// Circle

struct ShapeView: View {
    @State private var offset: CGSize = .zero
    var length: CGFloat = 100

    var dragGesture: some Gesture {
        DragGesture()
            .onChanged { value in
                offset = CGSize(width: value.startLocation.x + value.translation.width - length / 2,
                                height: value.startLocation.y + value.translation.height - length / 2)
            }
    }

    var body: some View {
        Circle()
            .frame(width: length, height: length, alignment: .center)
            .offset(offset)
            .gesture(dragGesture)
    }
}

How could I keep the right ScrollView so that RightView could scroll, and the right circle can be moved to all screen?

I will be very grateful if you can help me!!!

2      

BUILD THE ULTIMATE PORTFOLIO APP Most Swift tutorials help you solve one specific problem, but in my Ultimate Portfolio App series I show you how to get all the best practices into a single app: architecture, testing, performance, accessibility, localization, project organization, and so much more, all while building a SwiftUI app that works on iOS, macOS and watchOS.

Get it on Hacking with Swift+

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.