Answers for "how to decrease the height of textform feild in flutter"

1

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,
      ),
    ),
  );
}
Posted by: Guest on September-01-2020

Code answers related to "how to decrease the height of textform feild in flutter"

Browse Popular Code Answers by Language