I'm facing a weird issue with the latest stable version of Jetpack compose. When I was using version 1.0.5 everything was fine with LazyColumn
I'm migrating an app from Jetpack compose version 1.0.5
to 1.1.1
but when I run the app, it shows some vertical gap between the LazyColumn
items
When I checked, the contentPadding
it still 0.dp
on the LazyDsl.kt
contentPadding: PaddingValues = PaddingValues(0.dp)
I also haven't used any verticalArrangement
TIA