-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathyaru_popup_menu_button.dart
232 lines (214 loc) · 6.5 KB
/
yaru_popup_menu_button.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
import 'package:flutter/material.dart';
import 'package:yaru_icons/yaru_icons.dart';
import 'yaru_check_button.dart';
/// A generic wrapper around [PopupMenuButton] that is visually more consistent
/// to buttons and dialogs than [DropdownButton]
class YaruPopupMenuButton<T> extends StatelessWidget {
const YaruPopupMenuButton({
super.key,
this.initialValue,
required this.child,
required this.itemBuilder,
this.onSelected,
this.onCanceled,
this.tooltip,
this.position = PopupMenuPosition.over,
this.padding = const EdgeInsets.symmetric(horizontal: 5),
this.childPadding = const EdgeInsets.symmetric(horizontal: 5),
this.enabled = true,
this.offset = const Offset(0, 40),
this.enableFeedback,
this.constraints,
this.elevation,
this.style,
this.mouseCursor,
});
final T? initialValue;
final Widget child;
final ValueChanged<T>? onSelected;
final VoidCallback? onCanceled;
final String? tooltip;
final PopupMenuPosition position;
final List<PopupMenuEntry<T>> Function(BuildContext) itemBuilder;
final EdgeInsetsGeometry padding;
final EdgeInsetsGeometry childPadding;
final bool enabled;
final Offset offset;
final bool? enableFeedback;
final BoxConstraints? constraints;
final double? elevation;
final ButtonStyle? style;
final MouseCursor? mouseCursor;
@override
Widget build(BuildContext context) {
final style = this.style ?? OutlinedButtonTheme.of(context).style;
final state = <MaterialState>{if (!enabled) MaterialState.disabled};
final side = style?.side?.resolve(state);
final shape = style?.shape?.resolve(state) ??
RoundedRectangleBorder(
side: BorderSide(
color: Theme.of(context).colorScheme.outline,
),
);
final mouseCursor =
MaterialStateProperty.resolveAs(this.mouseCursor, state) ??
style?.mouseCursor?.resolve(state) ??
MaterialStateMouseCursor.clickable.resolve(state);
return DecoratedBox(
decoration: ShapeDecoration(shape: shape.copyWith(side: side)),
child: Material(
color: Colors.transparent,
clipBehavior: Clip.antiAlias,
shape: shape,
child: PopupMenuButton(
enabled: enabled,
elevation: elevation,
position: position,
padding: EdgeInsets.zero,
initialValue: initialValue,
onSelected: onSelected,
onCanceled: onCanceled,
tooltip: tooltip ?? '',
itemBuilder: itemBuilder,
offset: offset,
enableFeedback: enableFeedback,
constraints: constraints,
child: MouseRegion(
cursor: mouseCursor,
child: Opacity(
opacity: enabled ? 1 : 0.38,
child: Padding(
padding: padding,
child: DefaultTextStyle(
style: TextStyle(
color: Theme.of(context).colorScheme.onSurface,
fontWeight: FontWeight.w500,
),
child: Row(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Padding(
padding: childPadding,
child: child,
),
const SizedBox(
height: 40,
child: Icon(
YaruIcons.pan_down,
size: 20,
),
),
],
),
),
),
),
),
),
),
);
}
}
class YaruCheckedPopupMenuItem<T> extends PopupMenuItem<T> {
/// Creates a popup menu item with a checkmark.
///
/// By default, the menu item is [enabled] but unchecked. To mark the item as
/// checked, set [checked] to true.
///
/// The `checked` and `enabled` arguments must not be null.
const YaruCheckedPopupMenuItem({
super.key,
super.value,
this.checked = false,
super.enabled,
super.padding = EdgeInsets.zero,
super.height,
super.mouseCursor,
super.child,
});
final bool checked;
@override
PopupMenuItemState<T, YaruCheckedPopupMenuItem<T>> createState() =>
_YaruCheckedPopupMenuItemState<T>();
}
class _YaruCheckedPopupMenuItemState<T>
extends PopupMenuItemState<T, YaruCheckedPopupMenuItem<T>> {
var _checked = false;
@override
void handleTap() {
super.handleTap();
setState(() => _checked = !_checked);
}
@override
void initState() {
super.initState();
_checked = widget.checked;
}
@override
Widget buildChild() {
return IgnorePointer(
child: Padding(
// Same as [ListTile.padding] default
padding: const EdgeInsets.symmetric(horizontal: 4),
child: YaruCheckButton(
value: _checked,
onChanged: widget.enabled ? (_) {} : null,
title: widget.child ?? Container(),
),
),
);
}
}
class YaruMultiSelectPopupMenuItem<T> extends PopupMenuItem<T> {
/// Creates a popup menu item with a checkmark that does not close on tap.
///
/// By default, the menu item is [enabled] but unchecked. To mark the item as
/// checked, set [checked] to true.
///
/// The `checked` and `enabled` arguments must not be null.
const YaruMultiSelectPopupMenuItem({
super.key,
super.value,
this.checked = false,
super.enabled,
super.padding = EdgeInsets.zero,
super.height,
super.mouseCursor,
super.child,
this.onChanged,
});
final bool checked;
final ValueChanged<bool>? onChanged;
@override
PopupMenuItemState<T, YaruMultiSelectPopupMenuItem<T>> createState() =>
_YaruMultiSelectPopupMenuItemState<T>();
}
class _YaruMultiSelectPopupMenuItemState<T>
extends PopupMenuItemState<T, YaruMultiSelectPopupMenuItem<T>> {
var _checked = false;
@override
void handleTap() {
setState(() => _checked = !_checked);
widget.onChanged?.call(_checked);
}
@override
void initState() {
super.initState();
_checked = widget.checked;
}
@override
Widget buildChild() {
return IgnorePointer(
child: Padding(
// Same as [ListTile.padding] default
padding: const EdgeInsets.symmetric(horizontal: 4),
child: YaruCheckButton(
value: _checked,
onChanged: widget.enabled ? (_) {} : null,
title: widget.child ?? Container(),
),
),
);
}
}