StaticText
Displays static text, i.e., the text given in label.
| Key | Type | Description | Required | Default | Min Version |
|---|---|---|---|---|---|
| label | string | Displayed text | * | – | – |
| alignment | string | Text alignment | – | Left | – |
| selectable | boolean | Allow selecting/copying text | – | false | – |
| alignment | Description |
|---|---|
| Left | Left |
| Center | Center |
| Right | Right |
| Natural | Natural |
| Justified | Justified |
This component does not support icon/height, and currently does not support customizing font or size.
Example
{
cell = "Group";
label = "Static text";
};
{
cell = "StaticText";
label = "This is a static text";
};
{
cell = "StaticText";
label = "This static text is selectable";
selectable = true;
};
