Answers for "flutter textfield setting height"

C#
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
0

textfield font size flutter

TextField(                                 
  style: TextStyle(
  fontSize: 40.0,
  height: 2.0,
  color: Colors.black                  
  )
)
Posted by: Guest on January-27-2022

C# Answers by Framework

Browse Popular Code Answers by Language