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
55044a60
Unverified
Commit
55044a60
authored
Aug 07, 2023
by
Tomasz Gucio
Committed by
GitHub
Aug 07, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Constrain _RenderScaledInlineWidget child size in computeDryLayout (#131765)
parent
7de053b2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
widget_span.dart
packages/flutter/lib/src/widgets/widget_span.dart
+1
-1
text_test.dart
packages/flutter/test/widgets/text_test.dart
+2
-2
No files found.
packages/flutter/lib/src/widgets/widget_span.dart
View file @
55044a60
...
...
@@ -385,7 +385,7 @@ class _RenderScaledInlineWidget extends RenderBox with RenderObjectWithChildMixi
Size
computeDryLayout
(
BoxConstraints
constraints
)
{
assert
(!
constraints
.
hasBoundedHeight
);
final
Size
unscaledSize
=
child
?.
computeDryLayout
(
BoxConstraints
(
maxWidth:
constraints
.
maxWidth
/
scale
))
??
Size
.
zero
;
return
unscaledSize
*
scale
;
return
constraints
.
constrain
(
unscaledSize
*
scale
)
;
}
@override
...
...
packages/flutter/test/widgets/text_test.dart
View file @
55044a60
...
...
@@ -273,8 +273,8 @@ void main() {
textDirection:
TextDirection
.
ltr
,
child:
Center
(
child:
SizedBox
(
width:
100.3
,
child:
Text
.
rich
(
WidgetSpan
(
child:
Row
()),
textScaleFactor:
0.
3
),
width:
502.5454545454545
,
child:
Text
.
rich
(
WidgetSpan
(
child:
Row
()),
textScaleFactor:
0.
95
),
),
),
),
...
...
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