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

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?