Answers for "change placeholder color in material ui"

0

angular material change placeholder color

.container {
  .mat-form-field-outline,
  .mat-form-field-empty.mat-form-field-label,
  .mat-form-field-label,
  .mat-form-field-underline,
  .mat-input-element,
  ::placeholder {
    color: $white !important;
  }
}
Posted by: Guest on February-10-2021
0

uitextfield change placeholder color

swift 5 
myTextfield.attributedPlaceholder =
NSAttributedString( 
  string: "placeholder text", 
  attributes: [
    NSAttributedString.Key.foregroundColor: UIColor.red
  ]
)
Posted by: Guest on September-28-2021

Code answers related to "change placeholder color in material ui"

Code answers related to "Swift"

Browse Popular Code Answers by Language