Unverified Commit 2cb5b24b authored by Gary Qian's avatar Gary Qian Committed by GitHub

Fix text scaling of strut style (#33462)

parent fa3fbc89
......@@ -959,7 +959,7 @@ class TextStyle extends Diagnosticable {
strutStyle: strutStyle == null ? null : ui.StrutStyle(
fontFamily: strutStyle.fontFamily,
fontFamilyFallback: strutStyle.fontFamilyFallback,
fontSize: strutStyle.fontSize,
fontSize: strutStyle.fontSize == null ? null : strutStyle.fontSize * textScaleFactor,
height: strutStyle.height,
leading: strutStyle.leading,
fontWeight: strutStyle.fontWeight,
......
......@@ -354,4 +354,14 @@ void main() {
expect(TextStyle.lerp(redPaintTextStyle, bluePaintTextStyle, .25).background.color, red);
expect(TextStyle.lerp(redPaintTextStyle, bluePaintTextStyle, .75).background.color, blue);
});
test('TextStyle strut textScaleFactor', () {
const TextStyle style0 = TextStyle(fontSize: 10);
final ui.ParagraphStyle paragraphStyle0 = style0.getParagraphStyle(textScaleFactor: 2.5);
const TextStyle style1 = TextStyle(fontSize: 25);
final ui.ParagraphStyle paragraphStyle1 = style1.getParagraphStyle(textScaleFactor: 1);
expect(paragraphStyle0 == paragraphStyle1, true);
});
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment