Created
November 25, 2025 00:49
-
-
Save lawgimenez/0202b38c88fa30a3f669468780d535b1 to your computer and use it in GitHub Desktop.
Pinned views inside List
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fileprivate extension ScrollGeometry { | |
| var offsetY: CGFloat { | |
| contentOffset.y + contentInsets.top | |
| } | |
| } | |
| ... | |
| .onScrollGeometryChange(for: ScrollGeometry.self, of: {$0}, action: { oldValue, newValue in | |
| scrollProperties = newValue | |
| }) | |
| ... | |
| .safeAreaInset(edge: .top) { | |
| Picker... | |
| .offset(y: scrollProperties.offsetY < 0 ? -scrollProperties.offsetY: 0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment