Answers for "flutter different color hint text and placeholder input"

C#
1

text field placeholder color flutter theme

ThemeData( 
  // (...)
  hintStyle: TextStyle(
     color: Colors.grey, // <-- Change this
     fontSize: null,
     fontWeight: FontWeight.w400,
     fontStyle: FontStyle.normal,
     ),
);
Posted by: Guest on September-09-2020
1

flutter inputdecoration placeholder color

decoration: InputDecoration(
	hintText: "Password",
    // place the color here
	hintStyle: TextStyle(fontSize: 2.0, color: Colors.redAccent),
    ...
)
Posted by: Guest on March-12-2021

Code answers related to "flutter different color hint text and placeholder input"

C# Answers by Framework

Browse Popular Code Answers by Language