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:
A simple approach would be to use Spacer() like:
Spacer()
Scaffold( drawer: Drawer( child: Column( children: [ Text('Top'), Spacer(), // use this Text('Bottom'), ], ), ) )