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
If you are flexible to change column to a stack, you can do the following.
body: Container( child: Stack(children: [ Text('Text 1'), Text('Text 2'), Align( alignment: Alignment.bottomCenter, child: Text( "Text in bottom", ), ), ]), ),