1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
|
---
hide:
- navigation
---
# Widgets
Welcome to the Textual widget gallery.
We have many more widgets planned, or you can [build your own](./guide/widgets.md).
!!! info
Textual is a **TUI** framework. Everything below runs in the *terminal*.
## Button
A simple button with a variety of semantic styles.
[Button reference](./widgets/button.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/button.py"}
```
## Checkbox
A classic checkbox control.
[Checkbox reference](./widgets/checkbox.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/checkbox.py"}
```
## Collapsible
Content that may be toggled on and off by clicking a title.
[Collapsible reference](./widgets/collapsible.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/collapsible.py"}
```
## ContentSwitcher
A widget for containing and switching display between multiple child
widgets.
[ContentSwitcher reference](./widgets/content_switcher.md){ .md-button .md-button--primary }
## DataTable
A powerful data table, with configurable cursors.
[DataTable reference](./widgets/data_table.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/data_table.py"}
```
## Digits
Display numbers in tall characters.
[Digits reference](./widgets/digits.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/digits.py"}
```
## DirectoryTree
A tree view of files and folders.
[DirectoryTree reference](./widgets/directory_tree.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/directory_tree.py"}
```
## Footer
A footer to display and interact with key bindings.
[Footer reference](./widgets/footer.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/footer.py" columns="70" lines="12"}
```
## Header
A header to display the app's title and subtitle.
[Header reference](./widgets/header.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/header.py" columns="70" lines="12"}
```
## Input
A control to enter text.
[Input reference](./widgets/input.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/input.py" press="D,a,r,r,e,n"}
```
## Label
A simple text label.
[Label reference](./widgets/label.md){ .md-button .md-button--primary }
## Link
A clickable link that opens a URL.
[Link reference](./widgets/link.md){ .md-button .md-button--primary }
## ListView
Display a list of items (items may be other widgets).
[ListView reference](./widgets/list_view.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/list_view.py"}
```
## LoadingIndicator
Display an animation while data is loading.
[LoadingIndicator reference](./widgets/loading_indicator.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/loading_indicator.py"}
```
## Log
Display and update lines of text (such as from a file).
[Log reference](./widgets/log.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/log.py"}
```
## MarkdownViewer
Display and interact with a Markdown document (adds a table of contents and browser-like navigation to Markdown).
[MarkdownViewer reference](./widgets/markdown_viewer.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/markdown_viewer.py" columns="100" lines="42"}
```
## Markdown
Display a markdown document.
[Markdown reference](./widgets/markdown.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/markdown.py"}
```
## MaskedInput
A control to enter input according to a template mask.
[MaskedInput reference](./widgets/masked_input.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/masked_input.py"}
```
## OptionList
Display a vertical list of options (options may be Rich renderables).
[OptionList reference](./widgets/option_list.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/option_list_options.py"}
```
## Placeholder
Display placeholder content while you are designing a UI.
[Placeholder reference](./widgets/placeholder.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/placeholder.py"}
```
## Pretty
Display a pretty-formatted Rich renderable.
[Pretty reference](./widgets/pretty.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/pretty.py"}
```
## ProgressBar
A configurable progress bar with ETA and percentage complete.
[ProgressBar reference](./widgets/progress_bar.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/progress_bar.py" press="5,0,tab,enter"}
```
## RadioButton
A simple radio button.
[RadioButton reference](./widgets/radiobutton.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/radio_button.py"}
```
## RadioSet
A collection of radio buttons, that enforces uniqueness.
[RadioSet reference](./widgets/radioset.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/radio_set.py"}
```
## RichLog
Display and update text in a scrolling panel.
[RichLog reference](./widgets/rich_log.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/rich_log.py" press="H,i"}
```
## Rule
A rule widget to separate content, similar to a `<hr>` HTML tag.
[Rule reference](./widgets/rule.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/horizontal_rules.py"}
```
## Select
Select from a number of possible options.
[Select reference](./widgets/select.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/select_widget.py" press="tab,enter,down,down"}
```
## SelectionList
Select multiple values from a list of options.
[SelectionList reference](./widgets/selection_list.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/selection_list_selections.py" press="down,down,down"}
```
## Sparkline
Display numerical data.
[Sparkline reference](./widgets/sparkline.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/sparkline.py" lines="11"}
```
## Static
Displays simple static content. Typically used as a base class.
[Static reference](./widgets/static.md){ .md-button .md-button--primary }
## Switch
An on / off control, inspired by toggle buttons.
[Switch reference](./widgets/switch.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/switch.py"}
```
## Tabs
A row of tabs you can select with the mouse or navigate with keys.
[Tabs reference](./widgets/tabs.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/tabs.py" press="a,a,a,a,right,right"}
```
## TabbedContent
A Combination of Tabs and ContentSwitcher to navigate static content.
[TabbedContent reference](./widgets/tabbed_content.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/tabbed_content.py" press="j"}
```
## TextArea
A multi-line text area which supports syntax highlighting various languages.
[TextArea reference](./widgets/text_area.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/text_area_example.py" columns="42" lines="8"}
```
## Tree
A tree control with expandable nodes.
[Tree reference](./widgets/tree.md){ .md-button .md-button--primary }
```{.textual path="docs/examples/widgets/tree.py"}
```
|