flex.dart
16.6 KB
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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
/*
* Copyright (C) 2017, David PHAM-VAN <dev.nfet.net@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
part of widget;
enum FlexFit {
tight,
loose,
}
enum Axis {
horizontal,
vertical,
}
enum MainAxisSize {
min,
max,
}
enum MainAxisAlignment {
start,
end,
center,
spaceBetween,
spaceAround,
spaceEvenly,
}
enum CrossAxisAlignment {
start,
end,
center,
stretch,
}
enum VerticalDirection {
up,
down,
}
typedef _ChildSizingFunction = double Function(Widget child, double extent);
class Flex extends MultiChildWidget {
Flex({
@required this.direction,
this.mainAxisAlignment = MainAxisAlignment.start,
this.mainAxisSize = MainAxisSize.max,
this.crossAxisAlignment = CrossAxisAlignment.center,
this.verticalDirection = VerticalDirection.down,
List<Widget> children = const <Widget>[],
}) : assert(direction != null),
assert(mainAxisAlignment != null),
assert(mainAxisSize != null),
assert(crossAxisAlignment != null),
super(children: children);
final Axis direction;
final MainAxisAlignment mainAxisAlignment;
final MainAxisSize mainAxisSize;
final CrossAxisAlignment crossAxisAlignment;
final VerticalDirection verticalDirection;
double _getIntrinsicSize(
{Axis sizingDirection,
double
extent, // the extent in the direction that isn't the sizing direction
_ChildSizingFunction
childSize // a method to find the size in the sizing direction
}) {
if (direction == sizingDirection) {
// INTRINSIC MAIN SIZE
// Intrinsic main size is the smallest size the flex container can take
// while maintaining the min/max-content contributions of its flex items.
double totalFlex = 0.0;
double inflexibleSpace = 0.0;
double maxFlexFractionSoFar = 0.0;
for (Widget child in children) {
final int flex = child is Expanded ? child.flex : 0;
totalFlex += flex;
if (flex > 0) {
final double flexFraction = childSize(child, extent) / flex;
maxFlexFractionSoFar = math.max(maxFlexFractionSoFar, flexFraction);
} else {
inflexibleSpace += childSize(child, extent);
}
}
return maxFlexFractionSoFar * totalFlex + inflexibleSpace;
} else {
// INTRINSIC CROSS SIZE
// Intrinsic cross size is the max of the intrinsic cross sizes of the
// children, after the flexible children are fit into the available space,
// with the children sized using their max intrinsic dimensions.
// Get inflexible space using the max intrinsic dimensions of fixed children in the main direction.
final double availableMainSpace = extent;
int totalFlex = 0;
double inflexibleSpace = 0.0;
double maxCrossSize = 0.0;
for (Widget child in children) {
final int flex = child is Expanded ? child.flex : 0;
totalFlex += flex;
double mainSize;
double crossSize;
if (flex == 0) {
switch (direction) {
case Axis.horizontal:
mainSize = child.box.width;
crossSize = childSize(child, mainSize);
break;
case Axis.vertical:
mainSize = child.box.height;
crossSize = childSize(child, mainSize);
break;
}
inflexibleSpace += mainSize;
maxCrossSize = math.max(maxCrossSize, crossSize);
}
}
// Determine the spacePerFlex by allocating the remaining available space.
// When you're over-constrained spacePerFlex can be negative.
final double spacePerFlex =
math.max(0.0, (availableMainSpace - inflexibleSpace) / totalFlex);
// Size remaining (flexible) items, find the maximum cross size.
for (Widget child in children) {
final int flex = child is Expanded ? child.flex : 0;
if (flex > 0)
maxCrossSize =
math.max(maxCrossSize, childSize(child, spacePerFlex * flex));
}
return maxCrossSize;
}
}
double computeMinIntrinsicWidth(double height) {
return _getIntrinsicSize(
sizingDirection: Axis.horizontal,
extent: height,
childSize: (Widget child, double extent) => child.box.width);
}
double computeMaxIntrinsicWidth(double height) {
return _getIntrinsicSize(
sizingDirection: Axis.horizontal,
extent: height,
childSize: (Widget child, double extent) => child.box.width);
}
double computeMinIntrinsicHeight(double width) {
return _getIntrinsicSize(
sizingDirection: Axis.vertical,
extent: width,
childSize: (Widget child, double extent) => child.box.height);
}
double computeMaxIntrinsicHeight(double width) {
return _getIntrinsicSize(
sizingDirection: Axis.vertical,
extent: width,
childSize: (Widget child, double extent) => child.box.height);
}
double _getCrossSize(Widget child) {
switch (direction) {
case Axis.horizontal:
return child.box.height;
case Axis.vertical:
return child.box.width;
}
return null;
}
double _getMainSize(Widget child) {
switch (direction) {
case Axis.horizontal:
return child.box.width;
case Axis.vertical:
return child.box.height;
}
return null;
}
@override
void layout(Context context, BoxConstraints constraints,
{bool parentUsesSize = false}) {
// Determine used flex factor, size inflexible items, calculate free space.
int totalFlex = 0;
final int totalChildren = children.length;
Widget lastFlexChild;
assert(constraints != null);
final double maxMainSize = direction == Axis.horizontal
? constraints.maxWidth
: constraints.maxHeight;
final bool canFlex = maxMainSize < double.infinity;
double crossSize = 0.0;
double allocatedSize =
0.0; // Sum of the sizes of the non-flexible children.
for (Widget child in children) {
final int flex = child is Expanded ? child.flex : 0;
final FlexFit fit = child is Expanded ? child.fit : FlexFit.loose;
if (flex > 0) {
assert(() {
final String dimension =
direction == Axis.horizontal ? 'width' : 'height';
if (!canFlex &&
(mainAxisSize == MainAxisSize.max || fit == FlexFit.tight)) {
throw Exception(
'Flex children have non-zero flex but incoming $dimension constraints are unbounded.');
} else {
return true;
}
}());
totalFlex += flex;
} else {
BoxConstraints innerConstraints;
if (crossAxisAlignment == CrossAxisAlignment.stretch) {
switch (direction) {
case Axis.horizontal:
innerConstraints = BoxConstraints(
minHeight: constraints.maxHeight,
maxHeight: constraints.maxHeight);
break;
case Axis.vertical:
innerConstraints = BoxConstraints(
minWidth: constraints.maxWidth,
maxWidth: constraints.maxWidth);
break;
}
} else {
switch (direction) {
case Axis.horizontal:
innerConstraints =
BoxConstraints(maxHeight: constraints.maxHeight);
break;
case Axis.vertical:
innerConstraints = BoxConstraints(maxWidth: constraints.maxWidth);
break;
}
}
child.layout(context, innerConstraints, parentUsesSize: true);
allocatedSize += _getMainSize(child);
crossSize = math.max(crossSize, _getCrossSize(child));
}
lastFlexChild = child;
}
// Distribute free space to flexible children, and determine baseline.
final double freeSpace =
math.max(0.0, (canFlex ? maxMainSize : 0.0) - allocatedSize);
double allocatedFlexSpace = 0.0;
if (totalFlex > 0) {
final double spacePerFlex =
canFlex && totalFlex > 0 ? (freeSpace / totalFlex) : double.nan;
for (Widget child in children) {
final int flex = child is Expanded ? child.flex : 0;
final FlexFit fit = child is Expanded ? child.fit : FlexFit.loose;
if (flex > 0) {
final double maxChildExtent = canFlex
? (child == lastFlexChild
? (freeSpace - allocatedFlexSpace)
: spacePerFlex * flex)
: double.infinity;
double minChildExtent;
switch (fit) {
case FlexFit.tight:
assert(maxChildExtent < double.infinity);
minChildExtent = maxChildExtent;
break;
case FlexFit.loose:
minChildExtent = 0.0;
break;
}
assert(minChildExtent != null);
BoxConstraints innerConstraints;
if (crossAxisAlignment == CrossAxisAlignment.stretch) {
switch (direction) {
case Axis.horizontal:
innerConstraints = BoxConstraints(
minWidth: minChildExtent,
maxWidth: maxChildExtent,
minHeight: constraints.maxHeight,
maxHeight: constraints.maxHeight);
break;
case Axis.vertical:
innerConstraints = BoxConstraints(
minWidth: constraints.maxWidth,
maxWidth: constraints.maxWidth,
minHeight: minChildExtent,
maxHeight: maxChildExtent);
break;
}
} else {
switch (direction) {
case Axis.horizontal:
innerConstraints = BoxConstraints(
minWidth: minChildExtent,
maxWidth: maxChildExtent,
maxHeight: constraints.maxHeight);
break;
case Axis.vertical:
innerConstraints = BoxConstraints(
maxWidth: constraints.maxWidth,
minHeight: minChildExtent,
maxHeight: maxChildExtent);
break;
}
}
child.layout(context, innerConstraints, parentUsesSize: true);
final double childSize = _getMainSize(child);
assert(childSize <= maxChildExtent);
allocatedSize += childSize;
allocatedFlexSpace += maxChildExtent;
crossSize = math.max(crossSize, _getCrossSize(child));
}
}
}
// Align items along the main axis.
final double idealSize = canFlex && mainAxisSize == MainAxisSize.max
? maxMainSize
: allocatedSize;
double actualSize;
double actualSizeDelta;
PdfPoint size;
switch (direction) {
case Axis.horizontal:
size = constraints.constrain(PdfPoint(idealSize, crossSize));
actualSize = size.x;
crossSize = size.y;
break;
case Axis.vertical:
size = constraints.constrain(PdfPoint(crossSize, idealSize));
actualSize = size.y;
crossSize = size.x;
break;
}
box = PdfRect.fromPoints(PdfPoint.zero, size);
actualSizeDelta = actualSize - allocatedSize;
final double remainingSpace = math.max(0.0, actualSizeDelta);
double leadingSpace;
double betweenSpace;
final bool flipMainAxis = (verticalDirection == VerticalDirection.down &&
direction == Axis.vertical) ||
(verticalDirection == VerticalDirection.up &&
direction == Axis.horizontal);
switch (mainAxisAlignment) {
case MainAxisAlignment.start:
leadingSpace = 0.0;
betweenSpace = 0.0;
break;
case MainAxisAlignment.end:
leadingSpace = remainingSpace;
betweenSpace = 0.0;
break;
case MainAxisAlignment.center:
leadingSpace = remainingSpace / 2.0;
betweenSpace = 0.0;
break;
case MainAxisAlignment.spaceBetween:
leadingSpace = 0.0;
betweenSpace =
totalChildren > 1 ? remainingSpace / (totalChildren - 1) : 0.0;
break;
case MainAxisAlignment.spaceAround:
betweenSpace = totalChildren > 0 ? remainingSpace / totalChildren : 0.0;
leadingSpace = betweenSpace / 2.0;
break;
case MainAxisAlignment.spaceEvenly:
betweenSpace =
totalChildren > 0 ? remainingSpace / (totalChildren + 1) : 0.0;
leadingSpace = betweenSpace;
break;
}
// Position elements
final bool flipCrossAxis = (verticalDirection == VerticalDirection.down &&
direction == Axis.horizontal) ||
(verticalDirection == VerticalDirection.up &&
direction == Axis.vertical);
double childMainPosition =
flipMainAxis ? actualSize - leadingSpace : leadingSpace;
for (Widget child in children) {
double childCrossPosition;
switch (crossAxisAlignment) {
case CrossAxisAlignment.start:
childCrossPosition =
flipCrossAxis ? crossSize - _getCrossSize(child) : 0.0;
break;
case CrossAxisAlignment.end:
childCrossPosition =
!flipCrossAxis ? crossSize - _getCrossSize(child) : 0.0;
break;
case CrossAxisAlignment.center:
childCrossPosition = crossSize / 2.0 - _getCrossSize(child) / 2.0;
break;
case CrossAxisAlignment.stretch:
childCrossPosition = 0.0;
break;
}
if (flipMainAxis) {
childMainPosition -= _getMainSize(child);
}
switch (direction) {
case Axis.horizontal:
child.box = PdfRect(box.x + childMainPosition,
box.y + childCrossPosition, child.box.width, child.box.height);
break;
case Axis.vertical:
child.box = PdfRect(childCrossPosition, childMainPosition,
child.box.width, child.box.height);
break;
}
if (flipMainAxis) {
childMainPosition -= betweenSpace;
} else {
childMainPosition += _getMainSize(child) + betweenSpace;
}
}
}
@override
void paint(Context context) {
super.paint(context);
final Matrix4 mat = Matrix4.identity();
mat.translate(box.x, box.y);
context.canvas
..saveContext()
..setTransform(mat);
for (Widget child in children) {
child.paint(context);
}
context.canvas.restoreContext();
}
}
class Row extends Flex {
Row({
MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
MainAxisSize mainAxisSize = MainAxisSize.max,
CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
VerticalDirection verticalDirection = VerticalDirection.down,
List<Widget> children = const <Widget>[],
}) : super(
children: children,
direction: Axis.horizontal,
mainAxisAlignment: mainAxisAlignment,
mainAxisSize: mainAxisSize,
crossAxisAlignment: crossAxisAlignment,
verticalDirection: verticalDirection,
);
}
class Column extends Flex {
Column({
MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
MainAxisSize mainAxisSize = MainAxisSize.max,
CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
VerticalDirection verticalDirection = VerticalDirection.down,
List<Widget> children = const <Widget>[],
}) : super(
children: children,
direction: Axis.vertical,
mainAxisAlignment: mainAxisAlignment,
mainAxisSize: mainAxisSize,
crossAxisAlignment: crossAxisAlignment,
verticalDirection: verticalDirection,
);
}
class Expanded extends SingleChildWidget {
Expanded({
this.flex = 1,
this.fit = FlexFit.tight,
@required Widget child,
}) : super(child: child);
final int flex;
final FlexFit fit;
}
class ListView extends Flex {
ListView(
{Axis direction = Axis.vertical,
// EdgeInsets padding,
// double spacing = 0.0,
List<Widget> children = const <Widget>[]})
: super(
direction: direction,
mainAxisAlignment: MainAxisAlignment.start,
mainAxisSize: MainAxisSize.max,
crossAxisAlignment: CrossAxisAlignment.center,
verticalDirection: VerticalDirection.down,
children: children);
}