Answers for "textfield height flutter"

1

dynamically increase the size of textfield as user types flutter

set the maxLines property of TextField to null. maxLines: null
Posted by: Guest on May-04-2020
0

textfield height flutter

TextField(
     decoration: InputDecoration(
     	//remove inner padding
         contentPadding: const EdgeInsets.symmetric(vertical: 10,horizontal: 10),
         labelText: 'Enter your username',
         hintText: "Enter your Name",        
    ),
 )
Posted by: Guest on January-20-2022

Browse Popular Code Answers by Language