I\'m trying to have a Widget align to the bottom of my NavDrawer while still keeping a DrawerHeader and a list at the top of the Drawer. Here\'s what I\'m trying:
You need to wrap your Align widget in Expanded.
Align
Expanded
drawer: Drawer( child: Column( mainAxisSize: MainAxisSize.max, children: [ Text('Top'), Expanded( child: Align( alignment: Alignment.bottomCenter, child: Text('Bottom'), ), ), ], ), ),