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 9c4d55e commit fc4b7d3Copy full SHA for fc4b7d3
src/label.ios.ts
@@ -440,11 +440,15 @@ export class Label extends LabelBase {
440
this.nativeTextViewProtected.setTitleColorForState(color, 0 /* Normal */);
441
this.nativeTextViewProtected.titleLabel.textColor = color;
442
} else {
443
- // if (this.formattedText || this.html) {
444
- // this._setNativeText();
445
- // } else {
446
- this.nativeTextViewProtected.textColor = color;
447
- // }
+ if (this.formattedText || this.html) {
+ if (this.html) {
+ this.updateHTMLString();
+ } else {
+ super._setNativeText();
448
+ }
449
450
+ this.nativeTextViewProtected.textColor = color;
451
452
}
453
454
[linkColorProperty.setNative](value: Color | string) {
0 commit comments