Answers for "material style change placeholder color"

17

css placeholder color

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: pink;
}
::-moz-placeholder { /* Firefox 19+ */
  color: pink;
}
:-ms-input-placeholder { /* IE 10+ */
  color: pink;
}
:-moz-placeholder { /* Firefox 18- */
  color: pink;
}
Posted by: Guest on November-10-2020
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

Code answers related to "material style change placeholder color"

Code answers related to "Dart"

Browse Popular Code Answers by Language