Reputation: 4810
How to change TextFormField hint label background color in flutter?
Upvotes: -1
Views: 1162
Reputation: 5608
You can use backgroundColor
propetry of TextStyle
to change the background color of labelText
or hintText
:
TextFormField(
decoration: const InputDecoration(
hintText: 'Hint Text',
labelText: 'Label Text',
hintStyle: TextStyle(
backgroundColor: Colors.red, // Change background color for hint text
),
labelStyle: TextStyle(
backgroundColor: Colors.blue, // Change background color for label text
),
),
)
Upvotes: 2