```Column { Row() LazyColumn() }``` How Ca...
# compose
i
Copy code
Column {
    Row()
    LazyColumn()
}
How Can I make my Row scrollable? I want to scroll Row in the same time when I'm scrolling LazyColumn
l
Look into the
scrollable()
modifier for the Row(). The LazyColumn already has state that includes its scroll state, so you can use both to sync each other
1
a
Consider removing the
Column
, and doing
Copy code
LazyColumn {
  item {
    Row()
  }
  items(elements) { element ->
    // main LazyColumn content
  }
}
👍 2
l
Ah I totally misinterpreted that! Thank you @Alexandre Elias [G]
i
@Alexandre Elias [G] Thank you! Works great