i made an emoji popup: ```LazyColumn( modifie...
# compose-desktop
z
i made an emoji popup:
Copy code
LazyColumn(
    modifier = Modifier.fillMaxSize().padding(start = 1.dp, end = 10.dp),
    verticalArrangement = Arrangement.spacedBy(5.dp),
    state = listState,
) {
    items(items = emojis_cat_0_gropued) {
        Row(modifier = Modifier.fillMaxWidth().height(40.dp)) {
            for (k in 0..(it.size - 1))
            {
                IconButton(modifier = Modifier.width(40.dp).height(40.dp),
                    onClick = { inputText = inputText + it[k] }) {
                    Text(text = it[k], fontSize = 30.sp, maxLines = 1)
                }
            }
        }
    }
}
sadly its unbearably slow to scroll. if i replace the emoji strings with a normal string like "XX" its super fast. what is going on here? its seems just drawing unicode emoji symbols is unbearably slow
z
Please file a bug and post here
Also does this happen on android too?
z
i dont know if it happens on android aswell. my project is JVM only
where exactly should i file a bug? in what repo?
z
If it’s just jvm, then file it to the jetbrains compose repo on GitHub