text field placeholder color flutter theme code example
Example: text field placeholder color flutter theme
ThemeData(
// (...)
hintStyle: TextStyle(
color: Colors.grey, // <-- Change this
fontSize: null,
fontWeight: FontWeight.w400,
fontStyle: FontStyle.normal,
),
);