Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
2cb5b24b
Unverified
Commit
2cb5b24b
authored
May 30, 2019
by
Gary Qian
Committed by
GitHub
May 30, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix text scaling of strut style (#33462)
parent
fa3fbc89
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
text_style.dart
packages/flutter/lib/src/painting/text_style.dart
+1
-1
text_style_test.dart
packages/flutter/test/painting/text_style_test.dart
+10
-0
No files found.
packages/flutter/lib/src/painting/text_style.dart
View file @
2cb5b24b
...
...
@@ -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
,
...
...
packages/flutter/test/painting/text_style_test.dart
View file @
2cb5b24b
...
...
@@ -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
);
});
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment