float_column 1.1.0 float_column: ^1.1.0 copied to clipboard
Flutter FloatColumn widget for building a vertical column of widgets and text where the text wraps around floated widgets, similar to how CSS float works.
CHANGELOG #
[1.1.0] - July 5, 2021 #
- Added support for floated inline widgets using WidgetSpan with Floatable child.
[1.0.2] - July 4, 2021 #
- Added code that shows overflow area and size in case of height overflow.
[1.0.1] - July 4, 2021 #
- Fixed bug where the layout was incorrect in some cases if line-feed characters were in the text.
[1.0.0] - June 27, 2021 #
- Updated README.md and released 1.0.0 version.
[0.1.5] - May 7, 2021 #
- Updated so the
textAlign
parameter of WrappableText works correctly.
[0.1.4] - May 7, 2021 #
- Updated so negative indent values work correctly.
[0.1.3] - May 2, 2021 #
- Added
RenderBox get renderBox
andOffset get offset
to RenderTextMixin.
[0.1.2] - May 2, 2021 #
- Added support for visiting the children (render objects and text renderers) of a RenderFloatColumn, via the
visitChildrenOfAnyType
function. - Added support for getting detailed info about each text renderer child (via the
RenderTextMixin
), similar to RenderParagraph. - Fixed a bug relating to WrappableText and unique keys.
[0.1.1] - May 1, 2021 #
- Added support for margins and padding to WrappableText and Floatable.
[0.1.0] - April 26, 2021 #
- Removed debug print statements, added more examples to readme file.
[0.1.0-dev.3] - April 26, 2021 #
- Fixed a bug where a child widget with a width of zero would cause an exception.
[0.1.0-dev.2] - April 26, 2021 #
- Fixed a bug where a child widget with an unconstrained width would cause an exception.
[0.1.0-dev.1] - April 25, 2021 #
- Prerelease version with basic functionality, and probably a lot of bugs.