I have a CoordinatorLayout which contains (Fragmen...
# compose
g
I have a CoordinatorLayout which contains (FragmentContainer + BottomNavigation)
Now I’m showing a fragment which contains a LazyColumn
But the last item is behind the BottomNavigation
Should be like this
Is there a way to get like the compose bottom navigation, the “insets padding” or some way to make my ComposeView fit the correct size?
m
From the Scaffolding you can get `PaddingValues`:
f
You can add padding to your lazy column's function parameters, that basically behaves like clip to padding false and padding bottom
g
Thanks for the advise! I’ll check it out 😉