Nalawala Murtaza
Nalawala Murtaza

Reputation: 4810

how to change TextFormField hint label background color in flutter

How to change TextFormField hint label background color in flutter?

enter image description here

Upvotes: -1

Views: 1162

Answers (2)

Stewie Griffin
Stewie Griffin

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

esentis
esentis

Reputation: 4656

You can edit the hintStyle of InputDecoration

Upvotes: 0

Related Questions