flutter TextFormField text color code example

Example 1: text fieldform color flutter

TextField(
  style: TextStyle(color: Colors.red),
  decoration: InputDecoration(fillColor: Colors.orange, filled: true),
)

Example 2: flutter TextFormField background color

TextFormField(
	decoration: InputDecoration(
    	labelText: "Resevior Name",
        fillColor: Colors.white,
        filled: true, // dont forget this line
        ...
    )
    ...
)

Example 3: color textfield text flutter

TextField(
  style: TextStyle(color: Colors.white),
  ...
)

Example 4: flutter textfield label color

labelStyle: TextStyle(
	color: Colors.white,
)

Tags:

Dart Example