I\'m trying to build a generic home page and I want to align the last child of my column (which contains all the widgets for the page) to the bottom of the screen but the widget
I have always used Spacer for these kind of cases in Column or Row. Spacer takes up all the available space between two widgets of Row/Column.
For given example, you can try following
Column( mainAxisSize: MainAxisSize.max, children: [ ChildA(), ChildB(), Spacer(), BottomAlignedChild() ] )