We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b2fd6c commit 378f4deCopy full SHA for 378f4de
src/textfield/textfield.ios.ts
@@ -305,6 +305,8 @@ export class TextField extends TextFieldBase {
305
this._updateAttributedPlaceholder();
306
}
307
[placeholderColorProperty.setNative](value: UIColor | Color) {
308
+ const color = value instanceof Color ? value.ios : value;
309
+ this.nativeViewProtected.setNormalLabelColorForState(color, MDCTextControlState.Normal);
310
311
312
[hintProperty.setNative](value: string) {
0 commit comments