reactormonk
09/29/2023, 12:50 PMFlowRow
to scroll, but no such thing is happening, what's wrong here?
setContent {
val state = rememberScrollState(0)
MaterialTheme() {
FlowRow(
horizontalArrangement = Arrangement.spacedBy(10.dp),
verticalArrangement = Arrangement.spacedBy(10.dp),
modifier = Modifier.scrollable(state, Orientation.Vertical)
) {
Modifier.verticalScroll(state)
, and now it work blob thinking upside downefemoney
09/29/2023, 1:16 PMscrollable
has a contract. You will need to update the state yourselfreactormonk
09/29/2023, 1:26 PM