mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-07 20:31:02 -05:00
Fix checkboxes not working after scrolling in filter sheet (#10023)
Fixed an issue where CheckBox was not being checked after scrolling in the Filter tab
This commit is contained in:
parent
f79f0a7e97
commit
2bf77f1d81
1 changed files with 11 additions and 3 deletions
|
@ -167,7 +167,10 @@ fun AdaptiveSheet(
|
||||||
.offset {
|
.offset {
|
||||||
IntOffset(
|
IntOffset(
|
||||||
0,
|
0,
|
||||||
anchoredDraggableState.offset.takeIf { it.isFinite() }?.roundToInt() ?: 0,
|
anchoredDraggableState.offset
|
||||||
|
.takeIf { it.isFinite() }
|
||||||
|
?.roundToInt()
|
||||||
|
?: 0,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
.anchoredDraggable(
|
.anchoredDraggable(
|
||||||
|
@ -238,8 +241,13 @@ private fun <T> AnchoredDraggableState<T>.preUpPostDownNestedScrollConnection()
|
||||||
}
|
}
|
||||||
|
|
||||||
override suspend fun onPostFling(consumed: Velocity, available: Velocity): Velocity {
|
override suspend fun onPostFling(consumed: Velocity, available: Velocity): Velocity {
|
||||||
settle(velocity = available.toFloat())
|
val toFling = available.toFloat()
|
||||||
return available
|
return if (toFling > 0) {
|
||||||
|
settle(toFling)
|
||||||
|
available
|
||||||
|
} else {
|
||||||
|
Velocity.Zero
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun Float.toOffset(): Offset = Offset(0f, this)
|
private fun Float.toOffset(): Offset = Offset(0f, this)
|
||||||
|
|
Loading…
Reference in a new issue