FlowRowTileSchema
Renders a Compose FlowRow laying its tiles out horizontally and wrapping onto new lines when they no longer fit. horizontalArrangement spaces items within a line, verticalArrangement spaces the lines themselves, and maxItemsInEachRow caps how many children a single line may hold (defaults to unlimited).
Child scope: the tile publishes its FlowRowScope as a CompositionLocal (and clears the row and lazy-item scopes), so children can use flow-row scope modifiers such as weight and fillMaxRowHeight.
Filtering: when filterChildrenByTerm is non-null and non-empty, only children whose searchableTerms contain that term (case-insensitive, substring match) are rendered. Children without searchableTerms are filtered out.
Triggers dispatched:
OnDisplayEventTrigger— fired once when the tile enters composition (keyed by tile id).OnClickEventTrigger— fired when the flow row is tapped, but only if anOnClickevent is declared on this tile.
Notes: the tile is never scrollable and composes every child eagerly.