We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50fbf10 commit 89edf7dCopy full SHA for 89edf7d
presentation/src/main/java/com/threegap/bitnagil/presentation/screen/home/model/CollapsibleHeaderState.kt
@@ -27,8 +27,9 @@ internal class CollapsibleHeaderState(
27
val expandedHeaderHeightDp: Dp,
28
) {
29
private val expandedHeaderHeightPx: Float = with(density) { expandedHeaderHeightDp.toPx() }
30
+ private val initialStickyHeaderHeightPx: Float = with(density) { initialStickyHeaderHeightDp.toPx() }
31
- var stickyHeaderActualBottomPx by mutableFloatStateOf(0f)
32
+ var stickyHeaderActualBottomPx by mutableFloatStateOf(initialStickyHeaderHeightPx)
33
internal set
34
35
val collapsedContentOffsetDp: Dp
0 commit comments