mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
feat(text-base): Add Span vertical-align support (#8257)
This commit is contained in:

committed by
GitHub

parent
e2a9af2bc7
commit
faa0181b9c
@ -65,7 +65,7 @@ export class Span extends ViewBase implements SpanDefinition {
|
||||
}
|
||||
set text(value: string) {
|
||||
if (this._text !== value) {
|
||||
this._text = value;
|
||||
this._text = value && value.replace("\\n", "\n").replace("\\t", "\t");
|
||||
this.notifyPropertyChange("text", value);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user