Commit b3de00a
authored
Fix
Fixes [DropdownMenu can not be center aligned when using expandedInsets
](flutter/flutter#155581)
### Code sample
<details>
<summary>expand to view the code sample</summary>
```dart
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@OverRide
Widget build(BuildContext context) {
final List<DropdownMenuEntry<ShortMenu>> shortMenuItems =
<DropdownMenuEntry<ShortMenu>>[];
for (final ShortMenu value in ShortMenu.values) {
final DropdownMenuEntry<ShortMenu> entry =
DropdownMenuEntry<ShortMenu>(value: value, label: value.label);
shortMenuItems.add(entry);
}
return MaterialApp(
home: Scaffold(
body: Row(
children: <Widget>[
Expanded(
child: Center(
child: DropdownMenu<ShortMenu>(
expandedInsets: const EdgeInsets.all(16),
initialSelection: ShortMenu.item0,
dropdownMenuEntries: shortMenuItems,
label: const Text('With expandedInsets'),
),
),
),
Expanded(
child: Center(
child: DropdownMenu<ShortMenu>(
initialSelection: ShortMenu.item0,
dropdownMenuEntries: shortMenuItems,
label: const Text('Without expandedInsets'),
),
),
),
],
),
),
);
}
}
enum ShortMenu {
item0('Menu 0'),
item1('Menu 1'),
item2('Menu 2');
const ShortMenu(this.label);
final String label;
}
```
</details>
### Before
(`DropdownMenu` without `expandedInsets` cannot be centered)
<img width="770" alt="Screenshot 2024-10-04 at 14 13 58" src="https://github.com/user-attachments/assets/c7520c12-d16a-4867-8fae-38b75dbc4225">
### After
(`DropdownMenu` with `expandedInsets` be centered)
<img width="770" alt="Screenshot 2024-10-04 at 14 13 49" src="https://github.com/user-attachments/assets/82e0b81e-5c85-4e59-99b8-df329459773b">DropdownMenu with expandedInsets always aligned on top (#156214)1 parent ef4807b commit b3de00a
File tree
2 files changed
+38
-4
lines changed- packages/flutter
- lib/src/material
- test/material
2 files changed
+38
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
972 | 972 | | |
973 | 973 | | |
974 | 974 | | |
975 | | - | |
976 | | - | |
977 | | - | |
978 | | - | |
| 975 | + | |
979 | 976 | | |
980 | 977 | | |
981 | 978 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3415 | 3415 | | |
3416 | 3416 | | |
3417 | 3417 | | |
| 3418 | + | |
| 3419 | + | |
| 3420 | + | |
| 3421 | + | |
| 3422 | + | |
| 3423 | + | |
| 3424 | + | |
| 3425 | + | |
| 3426 | + | |
| 3427 | + | |
| 3428 | + | |
| 3429 | + | |
| 3430 | + | |
| 3431 | + | |
| 3432 | + | |
| 3433 | + | |
| 3434 | + | |
| 3435 | + | |
| 3436 | + | |
| 3437 | + | |
| 3438 | + | |
| 3439 | + | |
| 3440 | + | |
| 3441 | + | |
| 3442 | + | |
| 3443 | + | |
| 3444 | + | |
| 3445 | + | |
| 3446 | + | |
| 3447 | + | |
| 3448 | + | |
| 3449 | + | |
| 3450 | + | |
| 3451 | + | |
| 3452 | + | |
| 3453 | + | |
| 3454 | + | |
3418 | 3455 | | |
3419 | 3456 | | |
3420 | 3457 | | |
| |||
0 commit comments