Created
March 25, 2025 12:44
-
-
Save hhhello0507/c073605dfc8d5dabdd3f8153d9982bae to your computer and use it in GitHub Desktop.
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
import SwiftUI | |
public struct ScrollOffsetPreferenceKey: PreferenceKey { | |
public static var defaultValue: CGFloat = 0 | |
public static func reduce(value: inout CGFloat, nextValue: () -> CGFloat) { | |
value += nextValue() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment