Created
December 4, 2024 07:56
-
-
Save shoaibmushtaq25/a3ca3ad2d5433ad7bbb81785d96d9f36 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
... | |
Box( | |
modifier = Modifier | |
.fillMaxSize() | |
.nestedScroll(connection) | |
) { | |
Column(modifier = Modifier.scrollable( | |
orientation = Orientation.Vertical, | |
// state for Scrollable, describes how consume scroll amount | |
state = | |
rememberScrollableState { delta -> | |
0f | |
} | |
)) { | |
ExpandedHeader( | |
modifier = Modifier, | |
) | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment