Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/swiftui-library/hstack-snap-to-scroll
Easy-to-use HStack that snaps to elements on scroll.
https://github.com/swiftui-library/hstack-snap-to-scroll
flowlayout hstack scroll snap swiftui
Last synced: 30 days ago
JSON representation
Easy-to-use HStack that snaps to elements on scroll.
- Host: GitHub
- URL: https://github.com/swiftui-library/hstack-snap-to-scroll
- Owner: swiftui-library
- Created: 2021-08-30T13:44:37.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-04T10:38:09.000Z (9 months ago)
- Last Synced: 2024-08-06T23:51:27.845Z (5 months ago)
- Topics: flowlayout, hstack, scroll, snap, swiftui
- Language: Swift
- Homepage:
- Size: 493 KB
- Stars: 251
- Watchers: 3
- Forks: 23
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SnapToScroll
Drop-in SwiftUI-based container view for horizontal snapping.
To see the rest of the SwiftUI Library, visit [our website](https://swiftuilibrary.com).
https://user-images.githubusercontent.com/8763719/131696736-0474ae54-35ad-4579-ab1e-366ae101949b.mp4
## Getting Started
Using `SnapToScroll` is straightforward. There's just three steps.
1. Import `SnapToScroll`
2. Replace `HStack` with `HStackSnap`
3. Add `.snapAlignmentHelper` to your view.An example:
```swift
import SnapToScroll // Step 1
...HStackSnap(alignment: .center(32)) { // Step 2
ForEach(myModels) { viewModel in
MyView(
selectedIndex: $selectedIndex,
viewModel: viewModel
)
.snapAlignmentHelper(id: viewModel.id) // Step 3
}
}
```
For more examples, see `SnapToScrollDemo/ContentView.swift`.## Configuration
`HStackSnap` comes with two customizable properties:
- `alignment`: The way you'd like your elements to be arranged.
- `leading(CGFloat)`: Aligns your child views to the leading edge of `HStackSnap`. This configuration supports elements of various sizes, so long as they don't take up all available horizontal space (which would extend beyond the screen). Use the value to set the size of the left offset.
- `center(CGFloat)`: Automatically aligns your child view to the center of the screen, using the offset value you've provided. This is accomplished with inside of the `.snapAlignmentHelper` which sets the frame width based on the available space. Note that setting your own width elsewhere may produce unexpected layouts.
- `coordinateSpace`: Option to set custom name for the coordinate space, in the case you're using multiple `HStackSnap`s of various sizes. If you use this, set the same value in `.snapAlignmentHelper`.`.snapAlignmentHelper` comes with two options as well:
- `id`: Required. A unique ID for the element.
- `coordinateSpace`: Same as above.## Limitations
- `HStackSnap` is currently designed to work with static content.
## How it Works
At render, `HStackSnap` reads the frame data of each child element and calculates the `scrollOffset` each element should use. Then, on `DragGesture.onEnded`, the nearest snap location is calculated, and the scroll offset is set to this point.
Read through `HStackSnap.swift` and `Views/HStackSnapCore.swift` for more details.
## Credits
Thanks to pixeltrue for the [illustrations](https://www.pixeltrue.com/scenic-illustrations#download) used in example 2.