fix(ios): text-view color refreshes properly after setting the text to keep the styles (#8863)

closes https://github.com/NativeScript/NativeScript/issues/8764
This commit is contained in:
felixkrautschuk
2020-09-20 18:42:16 +02:00
committed by GitHub
parent 5f8d3d03f7
commit 313f47637e

View File

@@ -234,8 +234,8 @@ export class TextView extends TextViewBaseCommon {
public showText() {
this._isShowingHint = false;
this._refreshColor();
this._setNativeText();
this._refreshColor();
this.requestLayout();
}