SimpleText
Renders plain text showing text. typography provides the base text style, falling back to the ambient default when null; every other styling field overrides one property on top of that base and is ignored when null: color, autoSize, fontSize (sp), fontStyle, fontWeight, fontFamily, letterSpacing (sp), textDecoration, textAlign and lineHeight (sp). overflow defaults to clipping, softWrap to true, maxLines to unbounded and minLines to 1. Dispatches no triggers and is not clickable — wrap it in a Box or Card for tap handling. Renders plain text only — no inline annotations, links or markdown; wrap it in a SelectionContainer to make the text selectable.
Parameters
Text content displayed.
Unique identifier of the tile. Defaults to a random id.
Events owned by this tile. Never fired, since the tile dispatches no triggers.
Layout/appearance modifiers (size, padding, background, etc). Defaults to wrapping its content.
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.
Text color override. Defaults to none (uses the base style's color).
Base text style (size, weight, line height, etc as a set). Defaults to none (uses the ambient default).
Automatic font-size scaling to fit the available space. Defaults to none (disabled).
Font size override, in sp. Defaults to none (uses the base style's size).
Font style override (e.g. italic). Defaults to none (uses the base style's).
Font weight override. Defaults to none (uses the base style's).
Font family override. Defaults to none (uses the base style's).
Letter spacing override, in sp. Defaults to none (uses the base style's).
Text decoration override (e.g. underline). Defaults to none (uses the base style's).
Text alignment override. Defaults to none (uses the base style's).
Line height override, in sp. Defaults to none (uses the base style's).
How overflowing text is handled. Defaults to clipping.
Whether the text wraps at soft line breaks. Defaults to true.
Maximum number of lines shown. Defaults to unbounded.
Minimum number of lines reserved. Defaults to 1.