SimpleTextTileSchema
Renders a Compose Text showing text.
Text style: typography provides the base TextStyle, falling back to the ambient LocalTextStyle when null. Every other 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).
Layout: overflow defaults to clipping, softWrap to true, maxLines to unbounded and minLines to 1.
Triggers dispatched: none. The tile emits no trigger and is not clickable, so any events declared on it are never fired — wrap it in a Box or Card when you need tap handling.
Notes: the tile renders plain text only — no inline annotations, links or markdown. Wrap it in a SelectionContainer to make the text selectable.