Masonry
Masonry lays out contents of varying dimensions as blocks of the same width and different height with configurable gaps.
Masonry maintains a list of content blocks with a consistent width but different height.The contents are ordered by row.If a row is already filled with the specified number of columns, the next item starts another row, and it is added to the shortest column in order to optimize the use of space.
Basic masonry
A simple example of aMasonry.Masonry is a container for one or more items. It can receive any element including<div /> and<img />.
Image masonry
This example demonstrates the use ofMasonry for images.Masonry orders its children by row.If you'd like to order images by column, check outImageList.
Items with variable height
This example demonstrates the use ofMasonry for items with variable height.Items can move to other columns in order to abide by the rule that items are always added to the shortest column and hence optimize the use of space.
Columns
This example demonstrates the use of thecolumns to configure the number of columns of aMasonry.
columns accepts responsive values:
Spacing
This example demonstrates the use of thespacing to configure the spacing between items.It is important to note that the value provided to thespacing prop is multiplied by the theme's spacing field.
spacing accepts responsive values:
Sequential
This example demonstrates the use of thesequential to configure the sequential order.Withsequential enabled, items are added in order from left to right rather than adding to the shortest column.
Server-side rendering
This example demonstrates the use of thedefaultHeight,defaultColumns anddefaultSpacing, which are used tosupport server-side rendering.
defaultHeight should be large enough to render all rows. Also, it is worth mentioning that items are not added to the shortest column in case of server-side rendering.
API
See the documentation below for a complete reference to all of the props and classes available to the components mentioned here.