Ink
08/17/2021, 11:05 PMColumn {
Row()
LazyColumn()
}
How Can I make my Row scrollable? I want to scroll Row in the same time when I'm scrolling LazyColumnLuis
08/17/2021, 11:16 PMscrollable()
modifier for the Row(). The LazyColumn already has state that includes its scroll state, so you can use both to sync each otherAlexandre Elias [G]
08/17/2021, 11:30 PMColumn
, and doing
LazyColumn {
item {
Row()
}
items(elements) { element ->
// main LazyColumn content
}
}
Luis
08/17/2021, 11:57 PMInk
08/18/2021, 11:13 PM