zsperske
02/16/2023, 8:00 PMLazyColumn
with an AndroidView
which wraps a WebView
LazyColumn {
AndroidView(
factory = {
WebView()
}
)
//other stuff
}
The WebView has horizontal scrolling but while scrolling it, the lazy column & android view “fight” over the scroll input. If your horizontal scroll has any kind of vertical component to it, the lazy column will start scrolling. Other native views in the same lazy column that scroll horizontally work correctly (as in if your scroll is partially vertical, the lazy column won’t scroll errantly)
Has anyone run into this before?Chris Fillmore
02/17/2023, 11:49 AMzsperske
02/19/2023, 6:01 PMChris Fillmore
02/20/2023, 1:07 AMoverflow: hidden
Chris Fillmore
02/20/2023, 1:07 AMzsperske
02/20/2023, 5:24 PM