I'm trying to Align Text Field in the bottom lest but it is still in the same position in screen .
this is my code for that
Align(
alignment: Alignment.bottomLeft,
child: Row(
crossAxisAlignment: CrossAxisAlignment.end,
children: [
Container(
width: MediaQuery.of(context).size.width * 0.8,
// height: 60,
child: Padding(
padding: const EdgeInsets.only(left: 8.0),
child: TextField(
textAlign: TextAlign.left,
decoration: new InputDecoration(
border: new OutlineInputBorder(
borderRadius: const BorderRadius.all(
const Radius.circular(5.0),
),
),
controller: commentController,
keyboardType: TextInputType.text,
),
),
),
],
),
),
can anyone help me !
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…