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
7a0e3a30
Unverified
Commit
7a0e3a30
authored
Jan 06, 2021
by
Chinmoy
Committed by
GitHub
Jan 06, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prevent text from overflowing in OutlineButton and OutlinedButton label. (#70872)
parent
29d33cc3
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
34 additions
and
2 deletions
+34
-2
outline_button.dart
packages/flutter/lib/src/material/outline_button.dart
+1
-1
outlined_button.dart
packages/flutter/lib/src/material/outlined_button.dart
+1
-1
outline_button_test.dart
packages/flutter/test/material/outline_button_test.dart
+16
-0
outlined_button_test.dart
packages/flutter/test/material/outlined_button_test.dart
+16
-0
No files found.
packages/flutter/lib/src/material/outline_button.dart
View file @
7a0e3a30
...
...
@@ -310,7 +310,7 @@ class _OutlineButtonWithIcon extends OutlineButton with MaterialButtonWithIconMi
children:
<
Widget
>[
icon
,
const
SizedBox
(
width:
8.0
),
label
,
Flexible
(
child:
label
)
,
],
),
);
...
...
packages/flutter/lib/src/material/outlined_button.dart
View file @
7a0e3a30
...
...
@@ -345,7 +345,7 @@ class _OutlinedButtonWithIconChild extends StatelessWidget {
final
double
gap
=
scale
<=
1
?
8
:
lerpDouble
(
8
,
4
,
math
.
min
(
scale
-
1
,
1
))!;
return
Row
(
mainAxisSize:
MainAxisSize
.
min
,
children:
<
Widget
>[
icon
,
SizedBox
(
width:
gap
),
label
],
children:
<
Widget
>[
icon
,
SizedBox
(
width:
gap
),
Flexible
(
child:
label
)
],
);
}
}
packages/flutter/test/material/outline_button_test.dart
View file @
7a0e3a30
...
...
@@ -1222,6 +1222,22 @@ void main() {
expect
(
box
.
size
,
equals
(
const
Size
(
76
,
36
)));
expect
(
childRect
,
equals
(
const
Rect
.
fromLTRB
(
372.0
,
293.0
,
428.0
,
307.0
)));
});
testWidgets
(
'Text does not overflow in OutlineButton label'
,
(
WidgetTester
tester
)
async
{
await
tester
.
pumpWidget
(
Directionality
(
textDirection:
TextDirection
.
ltr
,
child:
MouseRegion
(
cursor:
SystemMouseCursors
.
forbidden
,
child:
OutlineButton
.
icon
(
icon:
const
Icon
(
Icons
.
add
),
label:
const
Text
(
'this is a very long text used to check whether an overflow occurs or not'
),
onPressed:
()
{},
),
),
),
);
});
}
PhysicalModelLayer
_findPhysicalLayer
(
Element
element
)
{
...
...
packages/flutter/test/material/outlined_button_test.dart
View file @
7a0e3a30
...
...
@@ -1212,6 +1212,22 @@ void main() {
);
expect
(
paddingWidget
.
padding
,
const
EdgeInsets
.
all
(
22
));
});
testWidgets
(
'Text does not overflow in OutlinedButton label'
,
(
WidgetTester
tester
)
async
{
await
tester
.
pumpWidget
(
Directionality
(
textDirection:
TextDirection
.
ltr
,
child:
MouseRegion
(
cursor:
SystemMouseCursors
.
forbidden
,
child:
OutlinedButton
.
icon
(
icon:
const
Icon
(
Icons
.
add
),
label:
const
Text
(
'this is a very long text used to check whether an overflow occurs or not'
),
onPressed:
()
{},
),
),
),
);
});
}
PhysicalModelLayer
_findPhysicalLayer
(
Element
element
)
{
...
...
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