Skip to content

Commit

Permalink
Fix header sizing bug with StickyHeaderScroll
Browse files Browse the repository at this point in the history
  • Loading branch information
wtmoose committed Oct 25, 2024
1 parent 34a30c3 commit df39534
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public struct StickyHeaderScroll<Content, Item>: View where Content: View, Item:
contentOffset: -offset,
deltaContentOffset: -(offset - contentOffset)
)
contentOffset = -offset
contentOffset = offset
}
content(
StickyHeaderScrollContext(
Expand Down

0 comments on commit df39534

Please sign in to comment.