Marc Reichelt
02/15/2026, 7:28 PMLazyColumn(verticalArrangement = Arrangement.spacedBy(8.dp), modifier = modifier) {
items(users) { user ->
UserItem(user = user, modifier = Modifier.fillMaxWidth())
}
}
It’s scrolling vertically alright on Android, but not when running via JVM on Desktop. Any hints at what I’m missing? I’m using Compose Multiplatform 1.10.1 and JDK Temurin 21.seb
02/15/2026, 7:45 PMMarc Reichelt
02/15/2026, 7:48 PMMarc Reichelt
02/15/2026, 7:48 PMseb
02/15/2026, 7:52 PMseb
02/15/2026, 7:52 PMMark Murphy
02/15/2026, 7:53 PMseb
02/15/2026, 7:54 PMModifier.scrollIndicator so there kind of is a native, cross-platform solution now. But there is no implementation yet 😄 Just the APIseb
02/15/2026, 7:55 PMseb
02/15/2026, 7:55 PMseb
02/15/2026, 7:55 PM