Published
- 1 min read
flutter TextFormField background color
The solution for this is noted below
flutter TextFormField background color
Solution
TextFormField(
decoration: InputDecoration(
labelText: "Resevior Name",
fillColor: Colors.white,
filled: true, // dont forget this line
...
)
...
)
Try other methods by searching on the site. That is if this doesn’t work