-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathtd_dropdown_menu_page.dart
427 lines (417 loc) · 15.4 KB
/
td_dropdown_menu_page.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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
import 'package:flutter/material.dart';
import 'package:tdesign_flutter/tdesign_flutter.dart';
import '../../base/example_widget.dart';
import '../annotation/demo.dart';
class TDDropdownMenuPage extends StatelessWidget {
const TDDropdownMenuPage({super.key});
@override
Widget build(BuildContext context) {
return Container(
color: TDTheme.of(context).grayColor2,
child: ExamplePage(
title: tdTitle(context),
desc: '菜单呈现数个并列的选项类目,用于整个页面的内容筛选,由菜单面板和菜单选项组成。',
exampleCodeGroup: 'dropdownMenu',
children: [
ExampleModule(title: '组件类型', children: [
ExampleItem(
ignoreCode: true,
desc: '单选下拉菜单',
builder: (BuildContext context) {
return const CodeWrapper(builder: _buildDownSimple);
},
),
ExampleItem(
ignoreCode: true,
desc: '分栏下拉菜单',
builder: (BuildContext context) {
return const CodeWrapper(builder: _buildDownChunk);
},
),
ExampleItem(
ignoreCode: true,
desc: '向上展开',
builder: (BuildContext context) {
return const CodeWrapper(builder: _buildUp);
},
),
]),
ExampleModule(title: '组件状态', children: [
ExampleItem(
ignoreCode: true,
desc: '禁用状态',
builder: (BuildContext context) {
return const CodeWrapper(builder: _buildDisabled);
},
),
ExampleItem(
ignoreCode: true,
desc: '分组菜单',
builder: (BuildContext context) {
return const CodeWrapper(builder: _buildGroup);
},
),
]),
],
test: [
ExampleItem(
ignoreCode: true,
desc: '自动弹出方向',
builder: (BuildContext context) {
return const CodeWrapper(builder: _buildHidden);
},
),
ExampleItem(
ignoreCode: true,
desc: '最大高度限制',
builder: (BuildContext context) {
return const CodeWrapper(builder: _buildHeight);
},
),
ExampleItem(
ignoreCode: true,
desc: '可横向滚动菜单',
builder: (BuildContext context) {
return const CodeWrapper(builder: _buildOverflow);
},
),
],
));
}
}
@Demo(group: 'dropdownMenu')
TDDropdownMenu _buildDownSimple(BuildContext context) {
return TDDropdownMenu(
direction: TDDropdownMenuDirection.down,
onMenuOpened: (value) {
print('打开第$value个菜单');
},
onMenuClosed: (value) {
print('关闭第$value个菜单');
},
items: [
TDDropdownItem(
options: [
TDDropdownItemOption(label: '全部产品', value: 'all', selected: true),
TDDropdownItemOption(label: '最新产品', value: 'new'),
TDDropdownItemOption(label: '最火产品', value: 'hot'),
],
onChange: (value) {
print('选择:$value');
},
),
TDDropdownItem(
options: [
TDDropdownItemOption(label: '默认排序', value: 'default', selected: true),
TDDropdownItemOption(label: '价格从高到低', value: 'price'),
],
),
],
);
}
@Demo(group: 'dropdownMenu')
TDDropdownMenu _buildDownChunk(BuildContext context) {
return TDDropdownMenu(
direction: TDDropdownMenuDirection.down,
items: [
TDDropdownItem(
label: '单列多选',
multiple: true,
options: [
TDDropdownItemOption(label: '选项1', value: '1', selected: true),
TDDropdownItemOption(label: '选项2', value: '2'),
TDDropdownItemOption(label: '选项3', value: '3'),
TDDropdownItemOption(label: '选项4', value: '4'),
TDDropdownItemOption(label: '选项5', value: '5'),
TDDropdownItemOption(label: '选项6', value: '6'),
TDDropdownItemOption(label: '选项7', value: '7'),
TDDropdownItemOption(label: '选项8', value: '8'),
TDDropdownItemOption(label: '禁用选项', value: '9', disabled: true),
],
onChange: (value) {
print('选择:$value');
},
onConfirm: (value) {
print('确定选择:$value');
},
onReset: () {
print('清空选择');
},
),
TDDropdownItem(
label: '双列多选',
multiple: true,
optionsColumns: 2,
options: [
TDDropdownItemOption(label: '选项1', value: '1', selected: true),
TDDropdownItemOption(label: '选项2', value: '2', selected: true),
TDDropdownItemOption(label: '选项3', value: '3'),
TDDropdownItemOption(label: '选项4', value: '4'),
TDDropdownItemOption(label: '选项5', value: '5'),
TDDropdownItemOption(label: '选项6', value: '6'),
TDDropdownItemOption(label: '选项7', value: '7'),
TDDropdownItemOption(label: '选项8', value: '8'),
TDDropdownItemOption(label: '禁用选项', value: '9', disabled: true),
TDDropdownItemOption(label: '禁用选项', value: '10', disabled: true),
],
),
TDDropdownItem(
label: '三列多选',
multiple: true,
optionsColumns: 3,
options: [
TDDropdownItemOption(label: '选项1', value: '1', selected: true),
TDDropdownItemOption(label: '选项2', value: '2', selected: true),
TDDropdownItemOption(label: '选项3', value: '3', selected: true),
TDDropdownItemOption(label: '选项4', value: '4'),
TDDropdownItemOption(label: '选项5', value: '5'),
TDDropdownItemOption(label: '选项6', value: '6'),
TDDropdownItemOption(label: '选项7', value: '7'),
TDDropdownItemOption(label: '选项8', value: '8'),
TDDropdownItemOption(label: '选项9', value: '9'),
TDDropdownItemOption(label: '禁用选项', value: '10', disabled: true),
TDDropdownItemOption(label: '禁用选项', value: '11', disabled: true),
TDDropdownItemOption(label: '禁用选项', value: '12', disabled: true),
],
),
],
);
}
@Demo(group: 'dropdownMenu')
TDDropdownMenu _buildUp(BuildContext context) {
return TDDropdownMenu(
direction: TDDropdownMenuDirection.up,
onMenuOpened: (value) {
print('打开第$value个菜单');
},
onMenuClosed: (value) {
print('关闭第$value个菜单');
},
builder: (context) {
return [
TDDropdownItem(
options: [
TDDropdownItemOption(label: '全部产品', value: 'all', selected: true),
TDDropdownItemOption(label: '最新产品', value: 'new'),
TDDropdownItemOption(label: '最火产品', value: 'hot'),
],
onChange: (value) {
print('选择:$value');
},
),
TDDropdownItem(
options: [
TDDropdownItemOption(label: '默认排序', value: 'default', selected: true),
TDDropdownItemOption(label: '价格从高到低', value: 'price'),
],
),
];
},
);
}
@Demo(group: 'dropdownMenu')
TDDropdownMenu _buildDisabled(BuildContext context) {
return TDDropdownMenu(
direction: TDDropdownMenuDirection.down,
builder: (context) {
return [
const TDDropdownItem(
disabled: true,
label: '禁用菜单',
),
const TDDropdownItem(
disabled: true,
label: '禁用菜单',
),
];
},
);
}
@Demo(group: 'dropdownMenu')
TDDropdownMenu _buildGroup(BuildContext context) {
return TDDropdownMenu(
direction: TDDropdownMenuDirection.up,
builder: (context) {
return [
TDDropdownItem(
label: '分组菜单',
multiple: true,
optionsColumns: 3,
options: [
TDDropdownItemOption(label: '选项1', value: '1', selected: true, group: '类型'),
TDDropdownItemOption(label: '选项2', value: '2', group: '类型'),
TDDropdownItemOption(label: '选项3', value: '3', group: '类型'),
TDDropdownItemOption(label: '选项4', value: '4', group: '类型'),
TDDropdownItemOption(label: '选项5', value: '5', group: '角色'),
TDDropdownItemOption(label: '选项6', value: '6', group: '角色'),
TDDropdownItemOption(label: '选项7', value: '7', group: '角色'),
TDDropdownItemOption(label: '选项8', value: '8', group: '角色'),
TDDropdownItemOption(label: '禁用选项', value: '9', disabled: true, group: '角色'),
],
onChange: (value) {
print('选择:$value');
},
onConfirm: (value) {
print('确定选择:$value');
},
),
];
},
);
}
@Demo(group: 'dropdownMenu')
TDDropdownMenu _buildHidden(BuildContext context) {
return TDDropdownMenu(
direction: TDDropdownMenuDirection.auto,
arrowIcon: TDIcons.caret_up_small,
builder: (context) {
return [
TDDropdownItem(
label: '分组菜单',
multiple: true,
optionsColumns: 3,
options: [
TDDropdownItemOption(label: '选项1', value: '1', selected: true, group: '类型'),
TDDropdownItemOption(label: '选项2', value: '2', group: '类型'),
TDDropdownItemOption(label: '选项3', value: '3', group: '类型'),
TDDropdownItemOption(label: '选项4', value: '4', group: '类型'),
TDDropdownItemOption(label: '选项5', value: '5', group: '角色'),
TDDropdownItemOption(label: '选项6', value: '6', group: '角色'),
TDDropdownItemOption(label: '选项7', value: '7', group: '角色'),
TDDropdownItemOption(label: '选项8', value: '8', group: '角色'),
TDDropdownItemOption(label: '禁用选项', value: '9', disabled: true, group: '角色'),
],
onChange: (value) {
print('选择:$value');
},
),
];
},
);
}
@Demo(group: 'dropdownMenu')
TDDropdownMenu _buildHeight(BuildContext context) {
return TDDropdownMenu(
direction: TDDropdownMenuDirection.up,
onMenuOpened: (value) {
print('打开第$value个菜单');
},
onMenuClosed: (value) {
print('关闭第$value个菜单');
},
builder: (context) {
return [
TDDropdownItem(
label: '最大高度限制',
multiple: true,
maxHeight: 200,
options: [
TDDropdownItemOption(label: '选项1', value: '1', selected: true),
TDDropdownItemOption(label: '选项2', value: '2', selected: true),
TDDropdownItemOption(label: '选项3', value: '3', selected: true),
TDDropdownItemOption(label: '选项4', value: '4'),
TDDropdownItemOption(label: '选项5', value: '5'),
TDDropdownItemOption(label: '选项6', value: '6'),
TDDropdownItemOption(label: '选项7', value: '7'),
TDDropdownItemOption(label: '选项8', value: '8'),
TDDropdownItemOption(label: '选项9', value: '9'),
TDDropdownItemOption(label: '禁用选项', value: '10', disabled: true),
TDDropdownItemOption(label: '禁用选项', value: '11', disabled: true),
TDDropdownItemOption(label: '禁用选项', value: '12', disabled: true),
],
onChange: (value) {
print('选择:$value');
},
),
TDDropdownItem(
maxHeight: 200,
options: [
TDDropdownItemOption(label: '选项1', value: '1', selected: true),
TDDropdownItemOption(label: '选项2', value: '2'),
TDDropdownItemOption(label: '选项3', value: '3'),
TDDropdownItemOption(label: '选项4', value: '4'),
TDDropdownItemOption(label: '选项5', value: '5'),
TDDropdownItemOption(label: '选项6', value: '6'),
TDDropdownItemOption(label: '选项7', value: '7'),
TDDropdownItemOption(label: '选项8', value: '8'),
TDDropdownItemOption(label: '选项9', value: '9'),
TDDropdownItemOption(label: '禁用选项', value: '10', disabled: true),
TDDropdownItemOption(label: '禁用选项', value: '11', disabled: true),
TDDropdownItemOption(label: '禁用选项', value: '12', disabled: true),
],
),
];
},
);
}
@Demo(group: 'dropdownMenu')
TDDropdownMenu _buildOverflow(BuildContext context) {
return TDDropdownMenu(
isScrollable: true,
tabBarAlign: MainAxisAlignment.spaceAround,
direction: TDDropdownMenuDirection.up,
onMenuOpened: (value) {
print('打开第$value个菜单');
},
onMenuClosed: (value) {
print('关闭第$value个菜单');
},
builder: (context) {
return [
TDDropdownItem(
label: '最大高度限制',
multiple: true,
maxHeight: 200,
tabBarWidth: 200,
options: [
TDDropdownItemOption(label: '选项1', value: '1', selected: true),
TDDropdownItemOption(label: '选项2', value: '2', selected: true),
TDDropdownItemOption(label: '选项3', value: '3', selected: true),
TDDropdownItemOption(label: '选项4', value: '4'),
TDDropdownItemOption(label: '选项5', value: '5'),
TDDropdownItemOption(label: '选项6', value: '6'),
TDDropdownItemOption(label: '选项7', value: '7'),
TDDropdownItemOption(label: '选项8', value: '8'),
TDDropdownItemOption(label: '选项9', value: '9'),
TDDropdownItemOption(label: '禁用选项', value: '10', disabled: true),
TDDropdownItemOption(label: '禁用选项', value: '11', disabled: true),
TDDropdownItemOption(label: '禁用选项', value: '12', disabled: true),
],
onChange: (value) {
print('选择:$value');
},
),
TDDropdownItem(
maxHeight: 200,
tabBarWidth: 200,
tabBarAlign: MainAxisAlignment.start,
options: [
TDDropdownItemOption(label: '选项1选项1选项1选项1选项1选项1选项1', value: '1', selected: true),
TDDropdownItemOption(label: '选项2', value: '2'),
],
),
TDDropdownItem(
maxHeight: 200,
options: [
TDDropdownItemOption(label: '选项1', value: '1', selected: true),
TDDropdownItemOption(label: '选项2', value: '2'),
],
),
TDDropdownItem(
maxHeight: 200,
options: [
TDDropdownItemOption(label: '选项1', value: '1', selected: true),
TDDropdownItemOption(label: '选项2', value: '2'),
],
),
TDDropdownItem(
maxHeight: 200,
options: [
TDDropdownItemOption(label: '选项1', value: '1', selected: true),
TDDropdownItemOption(label: '选项2', value: '2'),
],
),
];
},
);
}