File tree 1 file changed +10
-8
lines changed
1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -70,14 +70,16 @@ class _DropdownWidgetState extends State<DropdownWidget> {
70
70
corner: triangle,
71
71
cornerPosition: layoutPositionNotifier,
72
72
),
73
- child: Container (
74
- padding: widget.padding,
75
- constraints: BoxConstraints (minWidth: widget.origRect.width),
76
- child: Column (
77
- mainAxisSize: MainAxisSize .min,
78
- crossAxisAlignment:
79
- widget.actionAlignment ?? CrossAxisAlignment .center,
80
- children: widget.actions,
73
+ child: IntrinsicWidth (
74
+ child: Container (
75
+ padding: widget.padding,
76
+ constraints: BoxConstraints (minWidth: widget.origRect.width),
77
+ child: Column (
78
+ mainAxisSize: MainAxisSize .min,
79
+ crossAxisAlignment:
80
+ widget.actionAlignment ?? CrossAxisAlignment .center,
81
+ children: widget.actions,
82
+ ),
81
83
),
82
84
),
83
85
),
You can’t perform that action at this time.
0 commit comments