Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

textfield style flutter

TextField(
  cursorHeight: 25,
  autofocus: false,
  decoration: InputDecoration(
  	contentPadding: const EdgeInsets.symmetric(vertical: 10,horizontal: 10),
  	border: OutlineInputBorder(),
  	labelText: 'Enter your username',
  	hintText: "Enter your Name"
  ),
)
Source by flutter.dev #
 
PREVIOUS NEXT
Tagged: #textfield #style #flutter
ADD COMMENT
Topic
Name
5+6 =