Answers for "change input content style flutter"

12

how to change input text color in flutter

TextField(
  style: TextStyle(color: Colors.red),
  decoration: InputDecoration(fillColor: Colors.orange, filled: true),
)
Posted by: Guest on June-11-2020
1

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"
  ),
)
Posted by: Guest on January-20-2022

Code answers related to "change input content style flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language