Giter VIP home page Giter VIP logo

swiftui_scrollview_offset's Introduction

SwiftUI_ScrollView_Offset

The extension can monitor the offset of scrollView, and can control scrollview to scroll to the specified offset

Display

1 2

Usage

scrollOffsetX:

ScrollView(.horizontal) {
    LazyHStack {
        ForEach(0..<10) { index in
            Text("\(index)")
                .frame(width: 100, height: 240)
                .background(index == 6 ? Color.green : Color.orange.opacity(0.5))
                .cornerRadius(/*@START_MENU_TOKEN@*/3.0/*@END_MENU_TOKEN@*/)
        }
    }
}
.scrollOffsetX(self.$offsetX)

scrollOffsetY:

ScrollView(.vertical) {
    LazyVStack(spacing: 20) {
        ForEach(0..<10) { index in
            Text("\(index)")
                .frame(width: 200, height: 140)
                .background(index == 6 ? Color.green : Color.orange.opacity(0.5))
                .cornerRadius(/*@START_MENU_TOKEN@*/3.0/*@END_MENU_TOKEN@*/)
        }
    }
}
.scrollOffsetY(self.$offsetY)

Example code:https://gist.github.com/agelessman/3bf1d4f4d7fb24495972ba962777874f

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.