TextOutput
Text output widget for displaying plain text.
Signature
def TextOutput(
text: str,
size: Literal["small", "medium", "large"] = 'medium',
full_width: bool = False
)
Parameters
Name | Description | Type | Default |
---|---|---|---|
text (required) | The text to display. | str | None |
size | The size of the text. | Literal["small", "medium", "large"] | 'medium' |
full_width | Whether the widget should take up the full width of its container. | bool | False |