Hi, everyone, i would like to be able to put a fixed cardview in the end of the screen like a navigantion bar, but i could not do it.
Hey Natanael,
You can achieve that by placing the CardView
inside a Vertical Arrangement
, and then setting that arrangement to AlignVertical: Bottom
. Make sure the Screen
has Scrollable
set to false, so the layout stays fixed. Also, using a Vertical Scroll Arrangement
for the scrollable content above helps separate the fixed bottom section from the main content.
Let me know if it’s still not showing up correctly. I can share a sample layout if needed.