assorted_layout_widgets 4.0.6
assorted_layout_widgets: ^4.0.6 copied to clipboard
Layout widgets that boldly go where no native Flutter widgets have gone before. ColumnSuper, RowSuper, FitHorizontally, Box, WrapSuper, TextOneLine, Delayed, Pad, ButtonBarSuper.
4.0.6 - 2021-04-13 #
NormalizedOverflowBox
widget.
4.0.5 - 2021-04-10 #
WrapSuper.wrapFit
parameter.ButtonBarSuper
parameter.- New examples: WrapSuper WrapFit Example and ButtonBarSuper Example
4.0.2 - 2021-04-08 #
Pad.copyWith()
.
4.0.1 - 2021-03-22 #
- Fixed NNBD problem:
TextOneLine
as child of an intrinsic size widget.
4.0.0 - 2020-11-10 #
- Nullsafety.
RowSuper
horizontal alignment now applied when there are noRowSpacer
s andMainAxisSize
ismax
.
3.0.1 - 2020-11-10 #
-
Breaking change: The
Box
widget now has apadding
parameter. I recommend you use it with the newPad
class. For example:Box(padding: Pad(top: 4.0))
. ThePad
class solves the verbosity problem, and having apadding
parameter makesBox
more compatible withContainer
(rememberBox
is like aContainer
which can be madeconst
, so it's best if their parameters are not too different). -
The debugging constructors of the
Box
widget are now marked as deprecated so that you don't forget to remove them (they are not really deprecated).
2.0.1 - 2020-11-09 #
Pad
class.
2.0.0 - 2020-10-02 #
- Support for Flutter 1.22.
1.3.6 - 2020-09-19 #
- Docs improvement.
- Fixed edge case for
RowSuper
.
1.3.4 - 2020-09-14 #
- Docs improvement.
1.3.3 - 2020-08-31 #
- RowSuper:
fill
parameter.
1.3.2 - 2020-08-13 #
Delayed
widget.
1.2.0 - 2020-06-25 #
- Breaking Change:
ColumnSuper
width is now the max intrinsic width of its children, just like a regularColumn
. To restore old behavior:Container(width: double.infinity, child: ColumnSuper(...))
. - Breaking Change:
RowSuper
height is now the max intrinsic height of its children, just like a regularRow
. To restore old behavior:Container(height: double.infinity, child: RowSuper(...))
. - New examples: ColumnSuper Playground and RowSuper Playground.
1.1.4 - 2020-06-24 #
- Fix:
ColumnSuper
intrinsic height, andRowSuper
intrinsic width.
1.1.3 - 2020-06-15 #
- Fix:
WrapSuper
minimum raggedness algorithm now uses the correct JavaScript'sNumber.MAX_SAFE_INTEGER
. - Fix: Divide by zero conditions.
1.1.1 - 2020-05-19 #
- Docs improvement.
1.1.0 - 2020-05-06 #
- Upgraded to Flutter 1.17.
1.0.18 - 2020-04-01 #
WrapSuper
.
1.0.15 - 2020-02-01 #
- Box now has
vertical
andhorizontal
as constructor parameters.
1.0.14 - 2019-12-11 #
TextOneLine
that fixes https://github.com/flutter/flutter/issues/18761.
1.0.13 - 2019-12-04 #
- Alignment fix.
1.0.12 - 2019-11-27 #
Box
.
1.0.10 - 2019-11-25 #
FitHorizontally
widget.RowSpacer
widget.
1.0.0 - 2019-11-24 #
RowSuper
andColumnSuper
widgets.