Skip to content

Commit 62b88c0

Browse files
committed
fix(ios): wrong font size applied with html text
1 parent 618bd55 commit 62b88c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/label.ios.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ export class Label extends LabelBase {
441441
this.attributedString = null;
442442
} else {
443443
const font = this.nativeViewProtected.font;
444-
if (fontSize) {
444+
if (!fontSize) {
445445
fontSize = this.fontSize || font?.pointSize || 17;
446446
}
447447
const fontWeight = this.style.fontWeight;

0 commit comments

Comments
 (0)