If I have a column with several components in it, ...
# compose
n
If I have a column with several components in it, how do I make one of those components always be at the bottom (specifically a FAB button)
l
You can wrap it in a Scaffold. It has parameters to handle FABs
n
I just found that. What if I don’t want to use scaffold though?
l
Well, you can put a Box with a bottom end alignment, with the same width/height modifiers than your Column and put your button there.
1
❤️ 1
n
thanks