Is there any further plan to improve LazyColumn pe...
# compose
t
Is there any further plan to improve LazyColumn performance?
☝️ 1
Sample code here:
Copy code
MaterialTheme {
    Scaffold {
        LazyColumn {
            items(1000) {
                Text(text = it.toString(), modifier = Modifier.fillParentMaxWidth())
            }
        }
    }
}
Compose version 1.0.1
a
is that release build?
👆 3
w
Test it in Release mode. It makes a huge difference. Specifically, Release with R8 enabled is around 3x faster than debug builds.
🙏 1