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

ScrollView content alignment when set to both axis

Forums > SwiftUI

I'm having trouble sorting this out:

  • The ScrollView when set to use both axis always shows the content centered.
  • This is independent from the size of the content, wheteher it exceeds or not the size of the ScrollView.

I'm looking for a way to have the ScrollVIew showing the top of the content on load, and not the center.

Is there any way to set this in SwiftUI?

struct ContentView: View {

    var greenRectHeight = 1400.0
    var blueRectHeight = 100.0
    var redRectHeight = 20.0

    var innerRectWidth = 200.0
    var outerRectWidth = 300.0

    var body: some View {
        NavigationStack {
            ScrollView([.horizontal, .vertical]) {
                ZStack {
                    Rectangle()
                        .strokeBorder(lineWidth: 1)
                        .frame(width: outerRectWidth)
                        .frame(height: greenRectHeight)
                        .background(.green)

                    VStack(spacing: 0) {
                        Rectangle()
                            .strokeBorder(lineWidth: 1)
                            .frame(width: innerRectWidth)
                            .frame(height: blueRectHeight)
                            .background(.blue)

                        Rectangle()
                            .strokeBorder(lineWidth: 1)
                            .frame(width: innerRectWidth)
                            .frame(height: redRectHeight)
                            .background(.red)
                    }
                }

                .navigationTitle("ScrollView")
            }
            .background(.yellow)
        }
    }
}

2      

TAKE YOUR SKILLS TO THE NEXT LEVEL If you like Hacking with Swift, you'll love Hacking with Swift+ – it's my premium service where you can learn advanced Swift and SwiftUI, functional programming, algorithms, and more. Plus it comes with stacks of benefits, including monthly live streams, downloadable projects, a 20% discount on all books, and free gifts!

Find out more

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.