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
79d32877
Unverified
Commit
79d32877
authored
3 years ago
by
xubaolin
Committed by
GitHub
3 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix the DropdownButtonFormField's label display bug when the `hint` is non-null (#87104)
parent
fe52e566
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
256 additions
and
2 deletions
+256
-2
dropdown.dart
packages/flutter/lib/src/material/dropdown.dart
+13
-1
dropdown_form_field_test.dart
packages/flutter/test/material/dropdown_form_field_test.dart
+243
-1
No files found.
packages/flutter/lib/src/material/dropdown.dart
View file @
79d32877
...
...
@@ -1650,6 +1650,18 @@ class DropdownButtonFormField<T> extends FormField<T> {
final
InputDecoration
effectiveDecoration
=
decorationArg
.
applyDefaults
(
Theme
.
of
(
field
.
context
).
inputDecorationTheme
,
);
final
bool
showSelectedItem
=
items
!=
null
&&
items
.
where
((
DropdownMenuItem
<
T
>
item
)
=>
item
.
value
==
state
.
value
).
isNotEmpty
;
bool
isHintOrDisabledHintAvailable
()
{
final
bool
isDropdownDisabled
=
onChanged
==
null
||
(
items
==
null
||
items
.
isEmpty
);
if
(
isDropdownDisabled
)
{
return
hint
!=
null
||
disabledHint
!=
null
;
}
else
{
return
hint
!=
null
;
}
}
final
bool
isEmpty
=
!
showSelectedItem
&&
!
isHintOrDisabledHintAvailable
();
// An unfocusable Focus widget so that this widget can detect if its
// descendants have focus or not.
return
Focus
(
...
...
@@ -1658,7 +1670,7 @@ class DropdownButtonFormField<T> extends FormField<T> {
child:
Builder
(
builder:
(
BuildContext
context
)
{
return
InputDecorator
(
decoration:
effectiveDecoration
.
copyWith
(
errorText:
field
.
errorText
),
isEmpty:
i
tems
==
null
||
items
.
where
((
DropdownMenuItem
<
T
>
item
)
=>
item
.
value
==
state
.
value
).
i
sEmpty
,
isEmpty:
isEmpty
,
isFocused:
Focus
.
of
(
context
).
hasFocus
,
child:
DropdownButtonHideUnderline
(
child:
DropdownButton
<
T
>(
...
...
This diff is collapsed.
Click to expand it.
packages/flutter/test/material/dropdown_form_field_test.dart
View file @
79d32877
...
...
@@ -149,6 +149,248 @@ void verifyPaintedShadow(Finder customPaint, int elevation) {
}
void
main
(
)
{
// Regression test for https://github.com/flutter/flutter/issues/87102
testWidgets
(
'label position test - show hint'
,
(
WidgetTester
tester
)
async
{
int
?
value
;
await
tester
.
pumpWidget
(
TestApp
(
textDirection:
TextDirection
.
ltr
,
child:
Material
(
child:
DropdownButtonFormField
<
int
?>(
decoration:
const
InputDecoration
(
labelText:
'labelText'
,
),
value:
value
,
hint:
const
Text
(
'Hint'
),
onChanged:
(
int
?
newValue
)
{
value
=
newValue
;
},
items:
const
<
DropdownMenuItem
<
int
?>>[
DropdownMenuItem
<
int
?>(
value:
1
,
child:
Text
(
'One'
),
),
DropdownMenuItem
<
int
?>(
value:
2
,
child:
Text
(
'Two'
),
),
DropdownMenuItem
<
int
?>(
value:
3
,
child:
Text
(
'Three'
),
),
],
),
),
),
);
expect
(
value
,
null
);
final
Offset
hintEmptyLabel
=
tester
.
getTopLeft
(
find
.
text
(
'labelText'
));
// Select a item.
await
tester
.
tap
(
find
.
text
(
'Hint'
),
warnIfMissed:
false
);
await
tester
.
pumpAndSettle
();
await
tester
.
tap
(
find
.
text
(
'One'
).
last
);
await
tester
.
pumpAndSettle
();
expect
(
value
,
1
);
final
Offset
oneValueLabel
=
tester
.
getTopLeft
(
find
.
text
(
'labelText'
));
// The position of the label does not change.
expect
(
hintEmptyLabel
,
oneValueLabel
);
});
testWidgets
(
'label position test - show disabledHint: disable'
,
(
WidgetTester
tester
)
async
{
int
?
value
;
await
tester
.
pumpWidget
(
TestApp
(
textDirection:
TextDirection
.
ltr
,
child:
Material
(
child:
DropdownButtonFormField
<
int
?>(
decoration:
const
InputDecoration
(
labelText:
'labelText'
,
),
value:
value
,
disabledHint:
const
Text
(
'disabledHint'
),
onChanged:
null
,
// disable the menu to show the disabledHint.
items:
const
<
DropdownMenuItem
<
int
?>>[
DropdownMenuItem
<
int
?>(
value:
1
,
child:
Text
(
'One'
),
),
DropdownMenuItem
<
int
?>(
value:
2
,
child:
Text
(
'Two'
),
),
DropdownMenuItem
<
int
?>(
value:
3
,
child:
Text
(
'Three'
),
),
],
),
),
),
);
expect
(
value
,
null
);
// disabledHint shown.
final
Offset
hintEmptyLabel
=
tester
.
getTopLeft
(
find
.
text
(
'labelText'
));
expect
(
hintEmptyLabel
,
const
Offset
(
0.0
,
12.0
));
});
testWidgets
(
'label position test - show disabledHint: enable + null item'
,
(
WidgetTester
tester
)
async
{
int
?
value
;
await
tester
.
pumpWidget
(
TestApp
(
textDirection:
TextDirection
.
ltr
,
child:
Material
(
child:
DropdownButtonFormField
<
int
?>(
decoration:
const
InputDecoration
(
labelText:
'labelText'
,
),
value:
value
,
disabledHint:
const
Text
(
'disabledHint'
),
onChanged:
(
_
)
{},
items:
null
,
),
),
),
);
expect
(
value
,
null
);
// disabledHint shown.
final
Offset
hintEmptyLabel
=
tester
.
getTopLeft
(
find
.
text
(
'labelText'
));
expect
(
hintEmptyLabel
,
const
Offset
(
0.0
,
12.0
));
});
testWidgets
(
'label position test - show disabledHint: enable + empty item'
,
(
WidgetTester
tester
)
async
{
int
?
value
;
await
tester
.
pumpWidget
(
TestApp
(
textDirection:
TextDirection
.
ltr
,
child:
Material
(
child:
DropdownButtonFormField
<
int
?>(
decoration:
const
InputDecoration
(
labelText:
'labelText'
,
),
value:
value
,
disabledHint:
const
Text
(
'disabledHint'
),
onChanged:
(
_
)
{},
items:
const
<
DropdownMenuItem
<
int
?>>[],
),
),
),
);
expect
(
value
,
null
);
// disabledHint shown.
final
Offset
hintEmptyLabel
=
tester
.
getTopLeft
(
find
.
text
(
'labelText'
));
expect
(
hintEmptyLabel
,
const
Offset
(
0.0
,
12.0
));
});
testWidgets
(
'label position test - show hint: enable + empty item'
,
(
WidgetTester
tester
)
async
{
int
?
value
;
await
tester
.
pumpWidget
(
TestApp
(
textDirection:
TextDirection
.
ltr
,
child:
Material
(
child:
DropdownButtonFormField
<
int
?>(
decoration:
const
InputDecoration
(
labelText:
'labelText'
,
),
value:
value
,
hint:
const
Text
(
'hint'
),
onChanged:
(
_
)
{},
items:
const
<
DropdownMenuItem
<
int
?>>[],
),
),
),
);
expect
(
value
,
null
);
// hint shown.
final
Offset
hintEmptyLabel
=
tester
.
getTopLeft
(
find
.
text
(
'labelText'
));
expect
(
hintEmptyLabel
,
const
Offset
(
0.0
,
12.0
));
});
testWidgets
(
'label position test - no hint shown: enable + no selected + disabledHint'
,
(
WidgetTester
tester
)
async
{
int
?
value
;
await
tester
.
pumpWidget
(
TestApp
(
textDirection:
TextDirection
.
ltr
,
child:
Material
(
child:
DropdownButtonFormField
<
int
?>(
decoration:
const
InputDecoration
(
labelText:
'labelText'
,
),
value:
value
,
disabledHint:
const
Text
(
'disabledHint'
),
onChanged:
(
_
)
{},
items:
const
<
DropdownMenuItem
<
int
?>>[
DropdownMenuItem
<
int
?>(
value:
1
,
child:
Text
(
'One'
),
),
DropdownMenuItem
<
int
?>(
value:
2
,
child:
Text
(
'Two'
),
),
DropdownMenuItem
<
int
?>(
value:
3
,
child:
Text
(
'Three'
),
),
],
),
),
),
);
expect
(
value
,
null
);
final
Offset
hintEmptyLabel
=
tester
.
getTopLeft
(
find
.
text
(
'labelText'
));
expect
(
hintEmptyLabel
,
const
Offset
(
0.0
,
24.0
));
});
testWidgets
(
'label position test - show selected item: disabled + hint + disabledHint'
,
(
WidgetTester
tester
)
async
{
const
int
value
=
1
;
await
tester
.
pumpWidget
(
TestApp
(
textDirection:
TextDirection
.
ltr
,
child:
Material
(
child:
DropdownButtonFormField
<
int
?>(
decoration:
const
InputDecoration
(
labelText:
'labelText'
,
),
value:
value
,
hint:
const
Text
(
'hint'
),
disabledHint:
const
Text
(
'disabledHint'
),
onChanged:
null
,
// disabled
items:
const
<
DropdownMenuItem
<
int
?>>[
DropdownMenuItem
<
int
?>(
value:
1
,
child:
Text
(
'One'
),
),
DropdownMenuItem
<
int
?>(
value:
2
,
child:
Text
(
'Two'
),
),
DropdownMenuItem
<
int
?>(
value:
3
,
child:
Text
(
'Three'
),
),
],
),
),
),
);
expect
(
value
,
1
);
final
Offset
hintEmptyLabel
=
tester
.
getTopLeft
(
find
.
text
(
'labelText'
));
expect
(
hintEmptyLabel
,
const
Offset
(
0.0
,
12.0
));
});
// Regression test for https://github.com/flutter/flutter/issues/82910
testWidgets
(
'null value test'
,
(
WidgetTester
tester
)
async
{
int
?
value
=
1
;
...
...
@@ -181,7 +423,7 @@ void main() {
DropdownMenuItem
<
int
?>(
value:
3
,
child:
Text
(
'Three'
),
)
)
,
],
),
),
...
...
This diff is collapsed.
Click to expand it.
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