-
Notifications
You must be signed in to change notification settings - Fork 265
FlowLayout
FlowLayout is similar to UICollectionViewFlowLayout where it aligns items in row by row, from left to right, top to bottom.
-
interItemSpacingis the space between two cells within the same row -
lineSpacingis the space between two rowsWhen constructing a FlowLayout, you can also specify a
spacingparameter which will apply to bothinterItemSpacingandlineSpacing.
FlowLayout also support some of the Flexbox properties. These include justifyContents, alignItems, and alignContents.
-
justifyContentstells FlowLayout how to handle horizontal empty spaces within a row. This happens when all the cells with in a row including their spacing doesn’t fill the entire row.-
.startputs all the cells near
-
-
alignItemstells FlowLayout how to handle vertical spacing with in a row. Note that if all the cells with in a row have the same height,alignItemsdoes nothing. It only applies to cells that are not the tallest within a row..start
-
alignContentsis similar tojustifyContents. But it handles the vertical empty spaces within a collection. FlowLayout use this value to distribute rows in the vertical axis if all the rows cannot fill the entire vertical space..start