take full container height text flutter code example
Example 1: set container height flutter 25% of screen
MediaQuery.of(context).size.height * 0.25
Example 2: how to decrease the height of textform feild in flutter
Widget _buildTextField() {
final maxLines = 5;
return Container(
margin: EdgeInsets.all(12),
height: maxLines * 24.0,
child: TextField(
maxLines: maxLines,
decoration: InputDecoration(
hintText: "Enter a message",
fillColor: Colors.grey[300],
filled: true,
),
),
);
}