-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathtd_table_page.dart
359 lines (340 loc) · 11.1 KB
/
td_table_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
import 'package:flutter/cupertino.dart';
import 'package:tdesign_flutter/tdesign_flutter.dart';
import '../annotation/demo.dart';
import '../base/example_widget.dart';
class TDTablePage extends StatelessWidget {
const TDTablePage({Key? key}) : super(key: key);
List<dynamic> _getData(int index) {
var data = <dynamic>[];
for (var i = 0; i < 10; i++) {
if (i == index) {
data.add({
'title1': '内容内容内容内容',
'title2': '内容',
'title3': '内容',
'title4': '内容',
});
} else {
data.add({
'title1': '内容',
'title2': '内容',
'title3': '内容',
'title4': '内容',
});
}
}
return data;
}
List<dynamic> _getData2() {
var data = <dynamic>[];
for (var i = 0; i < 10; i++) {
if (i == 0) {
data.add({
'title1': '横向平铺内容不省略',
'title2': '横向平铺内容不省略',
'title3': '横向平铺内容不省略',
});
} else {
data.add({
'title1': '内容',
'title2': '内容',
'title3': '内容',
});
}
}
return data;
}
@override
Widget build(BuildContext context) {
return ExamplePage(
title: tdTitle(context),
desc: '表格常用于展示同类结构下的多种数据,易于组织、对比和分析等,并可对数据进行搜索、筛选、排序等操作。一般包括表头、数据行和表尾三部分。',
exampleCodeGroup: 'table',
children: [
ExampleModule(
title: '组件类型',
children: [
ExampleItem(desc: '基础表格', builder: _basicTable),
ExampleItem(desc: '可排序表格', builder: _sortableTable),
ExampleItem(desc: '带操作或按钮表格', builder: _operationBtnTable),
ExampleItem(builder: _operationIconTable, padding: const EdgeInsets.only(top: 16)),
ExampleItem(desc: '可固定首列表格', builder: _fixedFirstColTable),
ExampleItem(desc: '可固定尾列表格', builder: _fixedEndColTable),
ExampleItem(desc: '横向平铺可滚动表格', builder: _horizontalScrollTable),
],
),
ExampleModule(title: '组件样式', children: [
ExampleItem(desc: '带斑马纹表格样式', builder: _stripeTable),
ExampleItem(desc: '带边框表格样式', builder: _borderTable),
]),
],
test: [
ExampleItem(desc: '固定表头', builder: _fixedHeaderTable),
ExampleItem(desc: '固定列尾+滚动表格', builder: _fixedScrollTable),
ExampleItem(desc: '内容居中表格', builder: _centerTable),
ExampleItem(desc: '空数据表格', builder: _emptyTable),
ExampleItem(desc: '加载动画表格', builder: _loadingTable),
],
);
}
@Demo(group: 'table')
Widget _basicTable(BuildContext context) {
return TDTable(
columns: [
TDTableCol(title: '标题', colKey: 'title1', ellipsis: true),
TDTableCol(title: '标题', colKey: 'title2'),
TDTableCol(title: '标题', colKey: 'title3'),
TDTableCol(title: '标题', colKey: 'title4')
],
data: _getData(9),
);
}
@Demo(group: 'table')
Widget _sortableTable(BuildContext context) {
return TDTable(
columns: [
TDTableCol(title: '标题', colKey: 'title1', ellipsis: true, sortable: true),
TDTableCol(title: '标题', colKey: 'title2', sortable: true),
TDTableCol(title: '标题', colKey: 'title3', sortable: true),
TDTableCol(title: '标题', colKey: 'title4', sortable: true)
],
data: _getData(9),
);
}
@Demo(group: 'table')
Widget _operationBtnTable(BuildContext context) {
return TDTable(
columns: [
TDTableCol(title: '标题', colKey: 'title1', ellipsis: true),
TDTableCol(title: '标题', colKey: 'title2'),
TDTableCol(title: '标题', colKey: 'title3'),
TDTableCol(
title: '标题',
colKey: 'title4',
cellBuilder: (BuildContext context) {
return Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
TDText(
'修改',
forceVerticalCenter: true,
style: TextStyle(
color: TDTheme.of(context).brandNormalColor,
fontSize: 14,
height: 1,
),
),
TDText(
'通过',
forceVerticalCenter: true,
style: TextStyle(
color: TDTheme.of(context).brandNormalColor,
fontSize: 14,
height: 1,
),
),
],
);
},
)
],
data: _getData(9),
);
}
@Demo(group: 'table')
Widget _operationIconTable(BuildContext context) {
return TDTable(
columns: [
TDTableCol(title: '标题', colKey: 'title1', ellipsis: true),
TDTableCol(title: '标题', colKey: 'title2'),
TDTableCol(title: '标题', colKey: 'title3'),
TDTableCol(
title: '标题',
colKey: 'title4',
cellBuilder: (BuildContext context) {
return Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Icon(TDIcons.upload, color: TDTheme.of(context).brandNormalColor, size: 16),
Icon(TDIcons.delete, color: TDTheme.of(context).brandNormalColor, size: 16),
],
);
},
)
],
data: _getData(9),
);
}
@Demo(group: 'table')
Widget _fixedFirstColTable(BuildContext context) {
return TDTable(
columns: [
TDTableCol(title: '标题', colKey: 'title1'),
TDTableCol(title: '标题', colKey: 'title2'),
TDTableCol(title: '标题', colKey: 'title3'),
TDTableCol(title: '标题', colKey: 'title4', fixed: TDTableColFixed.left),
],
data: _getData(10),
);
}
@Demo(group: 'table')
Widget _fixedEndColTable(BuildContext context) {
return TDTable(
columns: [
TDTableCol(title: '标题', colKey: 'title1'),
TDTableCol(title: '标题', colKey: 'title2'),
TDTableCol(title: '标题', colKey: 'title3'),
TDTableCol(
title: '标题',
colKey: 'title4',
fixed: TDTableColFixed.right,
cellBuilder: (BuildContext context) {
return Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
TDText(
'修改',
style: TextStyle(
color: TDTheme.of(context).brandNormalColor,
fontSize: 14,
),
),
TDText(
'通过',
style: TextStyle(
color: TDTheme.of(context).brandNormalColor,
fontSize: 14,
),
),
],
);
},
),
],
data: _getData(10),
);
}
@Demo(group: 'table')
Widget _horizontalScrollTable(BuildContext context) {
return TDTable(
columns: [
TDTableCol(title: '标题', colKey: 'title1', width: 160),
TDTableCol(title: '标题', colKey: 'title2', width: 160),
TDTableCol(title: '标题', colKey: 'title3', width: 160),
],
data: _getData2(),
);
}
@Demo(group: 'table')
Widget _stripeTable(BuildContext context) {
return TDTable(
stripe: true,
columns: [
TDTableCol(title: '标题', colKey: 'title1', ellipsis: true),
TDTableCol(title: '标题', colKey: 'title2'),
TDTableCol(title: '标题', colKey: 'title3'),
TDTableCol(title: '标题', colKey: 'title4')
],
data: _getData(9),
);
}
@Demo(group: 'table')
Widget _borderTable(BuildContext context) {
return TDTable(
bordered: true,
columns: [
TDTableCol(title: '标题', colKey: 'title1', ellipsis: true),
TDTableCol(title: '标题', colKey: 'title2'),
TDTableCol(title: '标题', colKey: 'title3'),
TDTableCol(title: '标题', colKey: 'title4')
],
data: _getData(9),
);
}
@Demo(group: 'table')
Widget _fixedHeaderTable(BuildContext context) {
return TDTable(
bordered: true,
height: 240,
columns: [
TDTableCol(title: '标题', colKey: 'title1', ellipsis: true),
TDTableCol(title: '标题', colKey: 'title2'),
TDTableCol(title: '标题', colKey: 'title3'),
TDTableCol(title: '标题', colKey: 'title4')
],
data: _getData(9),
);
}
@Demo(group: 'table')
Widget _fixedScrollTable(BuildContext context) {
return TDTable(
columns: [
TDTableCol(title: '标题', colKey: 'title1', width: 200),
TDTableCol(title: '标题', colKey: 'title2', width: 160),
TDTableCol(title: '标题', colKey: 'title3', width: 160),
TDTableCol(
title: '标题',
colKey: 'title4',
fixed: TDTableColFixed.right,
cellBuilder: (BuildContext context) {
return Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
TDText(
'修改',
style: TextStyle(
color: TDTheme.of(context).brandNormalColor,
fontSize: 14,
),
),
TDText(
'通过',
style: TextStyle(
color: TDTheme.of(context).brandNormalColor,
fontSize: 14,
),
),
],
);
},
),
],
data: _getData2(),
);
}
@Demo(group: 'table')
Widget _centerTable(BuildContext context) {
return TDTable(
columns: [
TDTableCol(title: '标题', colKey: 'title1', align: TDTableColAlign.center),
TDTableCol(title: '标题', colKey: 'title2', align: TDTableColAlign.center),
TDTableCol(title: '标题', colKey: 'title3', align: TDTableColAlign.center),
TDTableCol(title: '标题', colKey: 'title4', align: TDTableColAlign.center)
],
data: _getData(10),
);
}
@Demo(group: 'table')
Widget _emptyTable(BuildContext context) {
return TDTable(
columns: [
TDTableCol(title: '标题', colKey: 'title1'),
TDTableCol(title: '标题', colKey: 'title2'),
TDTableCol(title: '标题', colKey: 'title3'),
TDTableCol(title: '标题', colKey: 'title4')
],
);
}
@Demo(group: 'table')
Widget _loadingTable(BuildContext context) {
return TDTable(
columns: [
TDTableCol(title: '标题', colKey: 'title1'),
TDTableCol(title: '标题', colKey: 'title2'),
TDTableCol(title: '标题', colKey: 'title3'),
TDTableCol(title: '标题', colKey: 'title4')
],
loading: true,
);
}
}