Change Height Of Text Field Flutter Code Example


Example: 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,       ),     ),   ); }

Comments

Popular posts from this blog

Chemistry - Bond Angles In NH3 And NCl3

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Change The Font Size Of Visual Studio Solution Explorer