Answers for "change color of textfield input text"

10

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
0

change input inner color

selector
{
	accent-color: somecolor;
}
Posted by: Guest on September-16-2021

Code answers related to "change color of textfield input text"

Code answers related to "Dart"

Browse Popular Code Answers by Language