Status Update
Comments
dm...@gmail.com <dm...@gmail.com> #2
Finally, here it is
Column(modifier = Modifier.fillMaxSize()) {
Box(modifier = Modifier
.fillMaxWidth()
.height(40.dp)
.clickable { }
)
val pullRefreshState = rememberPullRefreshState(refreshing = false, onRefresh = { })
Box(modifier = Modifier.fillMaxWidth()) {
Box(
modifier = Modifier
.fillMaxSize()
.background(Color.Green)
)
PullRefreshIndicator(
refreshing = false,
state = pullRefreshState,
modifier = Modifier.align(Alignment.TopCenter)
)
}
}
When the pull refresh indicator is hidden, the area where it's placed is not clickable. It's possible to workaround this bug by setting 'clipToBounds()' on the container.
I'm not sure whether it's a foundation bug or ui or material so please triage.
Description
Jetpack Compose Compiler version: 1.4.3
Jetpack Compose component(s) used: ScrollableTabRow, LeadingIconTab, Pager.
Kotlin version: 1.8.10
Description:
I have a horizontal pager with tabs. For unknown reason clicks do not hit tabs sometimes. I failed to build a minimal reproducable sample yet but managed to record a video.
Any ideas how to debug it or workaround are very appreciated.