Flutter how to align text in bottom of column

Issue I am trying to align a text in bottom of a column but it doesn’t work. I am using this code: Widget build(BuildContext context) { return Material( child: Scaffold( body: StreamBuilder<DocumentSnapshot<Map<String, dynamic>>>( stream: FirebaseFirestore.instance.collection(FirebaseAuth.instance.currentUser!.uid).doc(widget.payload).snapshots(), builder: (context, AsyncSnapshot<DocumentSnapshot> snapshot) {

Continue reading