Appearance
Text
Renders a block of text content. The most commonly used display widget -- ideal for paragraphs, descriptions, labels, and any dynamic text.
Properties
| Property | Type | Default | Description |
|---|---|---|---|
| content | textarea | 'Text content' | The text to display. Supports expressions and multi-line content. |
Example
Show a product description from your data source:
Content: `{ {row.description}}`Combine static text with expressions:
Content: Price: $`{ {row.price | number_format(2)}}` — `{ {row.stock}}` in stockTips
- Use expressions freely:
{ {row.name}},{ {if(row.active, 'Active', 'Inactive')}},{ {row.created_at | date_format('M d, Y')}}. - For multi-line content, the widget preserves line breaks in the rendered output.
- Use the Design tab to control typography (font, size, weight, color, line height) and spacing.
- If you need HTML formatting (bold, links, lists), consider the HTML Block widget instead.