Luke
10/23/2020, 5:49 PMFloatingActionButton
over a LazyColumnFor
and I’m trying to add bottom padding on the content of the column so the last element is not hidden by the FAB, like this:
LazyColumnFor(
items = itemList,
contentPadding = PaddingValues(bottom = 88.dp),
...
) { ... }
It works almost perfectly, but the items appear in the padding suddenly as they reach the column content frame. I would prefer them being drawn even if they are only visible in the padding. I guess I’m looking for an equivalent to android:clipToPadding="false"
. Any tips?Andrey Kulikov
10/23/2020, 5:53 PMLuke
10/23/2020, 5:59 PM