Abdelilah El Aissaoui
11/12/2022, 12:40 PMSelectionContainer {
LazyColumn {
items(100) {
Text("Line number $it")
}
}
}
The "copy" button also jumps around in the same situation. Seems like a compose bug but not completly sure.
A normal column works without any issues (expected since everything is composed unlike the LazyColumn).Abdelilah El Aissaoui
11/12/2022, 12:40 PMAbdelilah El Aissaoui
11/12/2022, 12:59 PMChris Fillmore
11/12/2022, 7:32 PMAbdelilah El Aissaoui
11/12/2022, 7:37 PMthe selection simply stops working when the first selected item is no longer visibleMostly this. I can no longer select items if the first select item is no longer visible. In my case, I'm trying to show the lines of a text document in my compose-desktop app (exactly same issue), so using a column is not an option as the files can be quite large
Abdelilah El Aissaoui
11/12/2022, 7:38 PMChris Fillmore
11/12/2022, 7:40 PMChris Fillmore
11/12/2022, 7:42 PMAbdelilah El Aissaoui
11/12/2022, 7:47 PMChris Fillmore
11/12/2022, 7:53 PMAbdelilah El Aissaoui
11/12/2022, 8:00 PM