textScaleFactor property comes from MediaQuery, when users change system font scaling in their OS.
When using a Text.rich with WidgetSpan with StyledText as a child, the textScaleFactor scales the text twice as much, unless we explicitly specify textScaleFactor = 1.0 on either of them
textScaleFactor
property comes fromMediaQuery
, when users change system font scaling in their OS.When using a
Text.rich
withWidgetSpan
withStyledText
as a child, thetextScaleFactor
scales the text twice as much, unless we explicitly specifytextScaleFactor = 1.0
on either of themtextScaleFactor=1.0
textScaleFactor=1.3
Code sample