FlexBox
Renders a Compose CSS-flexbox layout hosting tiles. direction sets the main axis (and its reversal), justifyContent distributes children along the main axis, alignItems aligns children on the cross axis of a single line, alignContent distributes the lines themselves (only takes effect when wrap allows multiple lines), and wrap controls whether items wrap. columnGap / rowGap are in dp. Publishes its flex scope to children so they can use flex modifiers (grow, shrink, basis, align-self). When filterChildrenByTerm is set, only children whose searchableTerms contain that term (case-insensitive substring match) are rendered — children without searchableTerms are filtered out. Never scrollable — every child is composed eagerly. Dispatches onDisplay once when composed, onClick only when declared.
Parameters
Unique identifier of the tile. Defaults to a random id.
Events owned by this tile, wired to its triggers (onDisplay, onClick).
Layout/appearance modifiers (size, padding, background, etc).
Whether the tile is shown, hidden but occupies space, or removed from layout. Defaults to visible.
Terms used by an ancestor's search/filter to decide whether this tile matches. Defaults to none.
Term used to filter tiles by their own searchableTerms. Defaults to none (no filtering).
Main axis direction. Defaults to row.
Distribution of children along the main axis. Defaults to start.
Alignment of children on the cross axis. Defaults to start.
Distribution of wrapped lines; only takes effect when wrap allows wrapping. Defaults to start.
Whether items wrap onto multiple lines. Defaults to no wrap.
Horizontal spacing between items, in dp. Defaults to 0.
Vertical spacing between items, in dp. Defaults to 0.
Child tiles laid out with flexbox semantics.