Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

Change TextField Label Color in Flutter

TextField(
  decoration: InputDecoration(
    labelText: 'Email',
    labelStyle: TextStyle(
      color: Colors.deepPurpleAccent, //<-- SEE HERE
    ),
  ),
),
)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Change #TextField #Label #Color #Flutter
ADD COMMENT
Topic
Name
4+1 =