William Barbosa
08/12/2020, 2:15 PMLazyColumnFor
? Even when the items are really flat the scrolling feels really jaggy. Is performance something that will be looked before the final release or am I holding it wrong?Adam Powell
08/12/2020, 2:15 PMTimo Drick
08/12/2020, 2:34 PMWilliam Barbosa
08/12/2020, 3:06 PMLazyColumn
Column
Text
Row
Text
Switch
alexsullivan114
08/12/2020, 10:40 PMAlexandre Elias [G]
08/16/2020, 8:06 PMWilliam Barbosa
08/17/2020, 5:56 PMAli Zargar Shabestari
09/07/2020, 12:44 PMLazyColumnFor(items = entries.words) {
Card(
modifier = Modifier
.fillMaxWidth()
.padding(5.dp)
.clickable(onClick = {
navigateTo(Screen.Definition(it.word))
})
) {
Text(
text = it.word,
style = TextStyle(fontWeight = FontWeight.Bold),
modifier = Modifier.padding(10.dp)
)
}
}
not using Card
fixes the performance problem though.
Edit: Actually it has something to do with clickable
modifier.FredyH
09/10/2020, 3:49 AMAli Zargar Shabestari
09/10/2020, 5:01 AM