Hi everyone. I'm using CMP and I'm geeting and wei...
# multiplatform
l
Hi everyone. I'm using CMP and I'm geeting and weird lag animation on iOS when I apply .imePadding to my LazyColumn, does anyone know how to solve?https://youtube.com/shorts/wgu1YYCylFg
j
Interesting to watch this with slow playback speed (0.25x) on YT 🙂 I see this:
I wonder if that white bar might be some kind of bottom padding applied to the container instead of content? Looks to be about the size of the status bar inset, but maybe I'm wrong
l
I think the problem is with the lazy column, because I used a scrollable column and this bug didn't happen
@Jacob Ras I changed the IME padding to content padding and the problem was solved, thanks for the tip 😀.
Copy code
LazyColumn (
    modifier = Modifier
        .fillMaxSize()
        .background(color = White),
        //.imePadding(),
    contentPadding = WindowInsets.ime.asPaddingValues()
) {
🚀 1
😊 1