How do you align widgets like CSS float with Flutter UI?
6,845
What you're looking for is Wrap widget.
new Wrap(
direction: Axis.horizontal,
crossAxisAlignment: WrapCrossAlignment.start,
spacing: 5,
runSpacing: 5,
children: [
],
);
Author by