I want a scrollable view which I'm doing by using the verticalScroll
modifier on a column.
Column(modifier = Modifier.verticalScroll(rememberScrollState())) {
// ... I could provide more detail about the contents here but I don't think it matters.
}
When I start scrolling vertically, the view will allow horizontal over scroll and stretch the view horizontally. This doesn't seem like desirable behavior to me.
Is there anyway to stop this behavior from happening?