Hey everyone, I'm getting a weird bug with LazyRow...
# compose
t
Hey everyone, I'm getting a weird bug with LazyRow... for some reason, when I scroll through 4 cards, the next cards are EMPTY! When I scroll back, the old cards are also empty... What am I doing wrong?
Copy code
@Composable
fun HeaderCards(users: List<User>) {
    LazyRow(
        contentPadding = PaddingValues(horizontal = 10.dp),
        modifier = Modifier
            .fillMaxWidth(),
    ) {
        items(users) { user ->
            HeaderCard(user)
        }
    }
}
z
I believe that's a known issue, I think it should be fixed in the next release
👍 2
c
Tiago Nunes yeah I think the issue tracker has been posted a few times here if you search for lazyRow or lazyColumn and sort by recent.
t
@Colton Idle Thanks! I google'd and searched lazyrow on this channel a bit and I couldn't find it, I really thought I was making some error 😅