2023-07-24 19:05:37 +00:00
|
|
|
# Examples
|
|
|
|
|
2024-01-18 09:56:06 +00:00
|
|
|
This folder contains unreleased code. View the [examples for the latest release
|
|
|
|
(0.25.0)](https://github.com/ratatui-org/ratatui/tree/v0.25.0/examples) instead.
|
|
|
|
|
2024-01-12 02:08:54 +00:00
|
|
|
> [!WARNING]
|
2024-01-11 07:44:23 +00:00
|
|
|
>
|
2024-01-18 09:56:06 +00:00
|
|
|
> There are backwards incompatible changes in these examples, as they are designed to compile
|
|
|
|
> against the `main` branch.
|
2024-01-11 07:44:23 +00:00
|
|
|
>
|
2024-01-18 09:56:06 +00:00
|
|
|
> There are a few workaround for this problem:
|
2024-01-11 07:44:23 +00:00
|
|
|
>
|
2024-01-18 09:56:06 +00:00
|
|
|
> - View the examples as they were when the latest version was release by selecting the tag that
|
|
|
|
> matches that version. E.g. <https://github.com/ratatui-org/ratatui/tree/v0.25.0/examples>. There
|
|
|
|
> is a combo box at the top of this page which allows you to select any previous tagged version.
|
|
|
|
> - To view the code locally, checkout the tag using `git switch --detach v0.25.0`.
|
|
|
|
> - Use the latest [alpha version of Ratatui]. These are released weekly on Saturdays.
|
|
|
|
> - Compile your code against the main branch either locally by adding e.g. `path = "../ratatui"` to
|
|
|
|
> the dependency, or remotely by adding `git = "https://github.com/ratatui-org/ratatui"`
|
|
|
|
>
|
|
|
|
> For a list of unreleased breaking changes, see [BREAKING-CHANGES.md].
|
|
|
|
>
|
|
|
|
> We don't keep the CHANGELOG updated with unreleased changes, check the git commit history or run
|
|
|
|
> `git-cliff -u` against a cloned version of this repository.
|
2023-07-24 19:05:37 +00:00
|
|
|
|
2023-10-20 19:41:36 +00:00
|
|
|
## Demo2
|
|
|
|
|
|
|
|
This is the demo example from the main README and crate page. Source: [demo2](./demo2/).
|
|
|
|
|
|
|
|
```shell
|
2023-10-25 21:01:04 +00:00
|
|
|
cargo run --example=demo2 --features="crossterm widget-calendar"
|
2023-10-20 19:41:36 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
![Demo2][demo2.gif]
|
2023-07-24 19:05:37 +00:00
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## Demo
|
2023-08-13 16:21:00 +00:00
|
|
|
|
2023-09-21 08:47:23 +00:00
|
|
|
This is the previous demo example from the main README. It is available for each of the backends. Source:
|
2023-09-02 00:26:01 +00:00
|
|
|
[demo.rs](./demo/).
|
2023-08-13 16:21:00 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=demo --features=crossterm
|
|
|
|
cargo run --example=demo --no-default-features --features=termion
|
|
|
|
cargo run --example=demo --no-default-features --features=termwiz
|
|
|
|
```
|
|
|
|
|
|
|
|
![Demo][demo.gif]
|
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## Hello World
|
|
|
|
|
|
|
|
This is a pretty boring example, but it contains some good documentation
|
|
|
|
on writing tui apps. Source: [hello_world.rs](./hello_world.rs).
|
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=hello_world --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Hello World][hello_world.gif]
|
|
|
|
|
|
|
|
## Barchart
|
|
|
|
|
|
|
|
Demonstrates the [`BarChart`](https://docs.rs/ratatui/latest/ratatui/widgets/struct.BarChart.html)
|
|
|
|
widget. Source: [barchart.rs](./barchart.rs).
|
2023-07-24 19:05:37 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=barchart --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Barchart][barchart.gif]
|
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## Block
|
|
|
|
|
|
|
|
Demonstrates the [`Block`](https://docs.rs/ratatui/latest/ratatui/widgets/block/struct.Block.html)
|
|
|
|
widget. Source: [block.rs](./block.rs).
|
2023-07-24 19:05:37 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=block --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Block][block.gif]
|
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## Calendar
|
|
|
|
|
|
|
|
Demonstrates the [`Calendar`](https://docs.rs/ratatui/latest/ratatui/widgets/calendar/index.html)
|
|
|
|
widget. Source: [calendar.rs](./calendar.rs).
|
2023-07-24 19:05:37 +00:00
|
|
|
|
|
|
|
```shell
|
2023-10-05 08:06:28 +00:00
|
|
|
cargo run --example=calendar --features="crossterm widget-calendar"
|
2023-07-24 19:05:37 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
![Calendar][calendar.gif]
|
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## Canvas
|
|
|
|
|
|
|
|
Demonstrates the [`Canvas`](https://docs.rs/ratatui/latest/ratatui/widgets/canvas/index.html) widget
|
|
|
|
and related shapes in the
|
|
|
|
[`canvas`](https://docs.rs/ratatui/latest/ratatui/widgets/canvas/index.html) module. Source:
|
|
|
|
[canvas.rs](./canvas.rs).
|
2023-07-24 19:05:37 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=canvas --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Canvas][canvas.gif]
|
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## Chart
|
|
|
|
|
|
|
|
Demonstrates the [`Chart`](https://docs.rs/ratatui/latest/ratatui/widgets/struct.Chart.html) widget.
|
|
|
|
Source: [chart.rs](./chart.rs).
|
2023-07-24 19:05:37 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=chart --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Chart][chart.gif]
|
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## Colors
|
|
|
|
|
|
|
|
Demonstrates the available [`Color`](https://docs.rs/ratatui/latest/ratatui/style/enum.Color.html)
|
|
|
|
options. These can be used in any style field. Source: [colors.rs](./colors.rs).
|
2023-08-11 01:36:12 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=colors --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Colors][colors.gif]
|
|
|
|
|
2023-09-10 00:30:41 +00:00
|
|
|
## Colors (RGB)
|
|
|
|
|
|
|
|
Demonstrates the available RGB
|
|
|
|
[`Color`](https://docs.rs/ratatui/latest/ratatui/style/enum.Color.html) options. These can be used
|
2023-10-20 19:41:36 +00:00
|
|
|
in any style field. Source: [colors_rgb.rs](./colors_rgb.rs). Uses a half block technique to render
|
|
|
|
two square-ish pixels in the space of a single rectangular terminal cell.
|
2023-09-10 00:30:41 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=colors_rgb --features=crossterm
|
|
|
|
```
|
|
|
|
|
2023-12-17 09:34:59 +00:00
|
|
|
Note: VHs renders full screen animations poorly, so this is a screen capture rather than the output
|
|
|
|
of the VHS tape.
|
|
|
|
|
|
|
|
<https://github.com/ratatui-org/ratatui/assets/381361/485e775a-e0b5-4133-899b-1e8aeb56e774>
|
2023-09-10 00:30:41 +00:00
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## Custom Widget
|
|
|
|
|
|
|
|
Demonstrates how to implement the
|
2023-10-20 19:41:36 +00:00
|
|
|
[`Widget`](https://docs.rs/ratatui/latest/ratatui/widgets/trait.Widget.html) trait. Also shows mouse
|
|
|
|
interaction. Source: [custom_widget.rs](./custom_widget.rs).
|
2023-07-24 19:05:37 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=custom_widget --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Custom Widget][custom_widget.gif]
|
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## Gauge
|
|
|
|
|
|
|
|
Demonstrates the [`Gauge`](https://docs.rs/ratatui/latest/ratatui/widgets/struct.Gauge.html) widget.
|
|
|
|
Source: [gauge.rs](./gauge.rs).
|
2023-07-24 19:05:37 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=gauge --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Gauge][gauge.gif]
|
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## Inline
|
2023-07-24 19:05:37 +00:00
|
|
|
|
2023-10-20 19:41:36 +00:00
|
|
|
Demonstrates how to use the
|
2023-09-02 00:26:01 +00:00
|
|
|
[`Inline`](https://docs.rs/ratatui/latest/ratatui/terminal/enum.Viewport.html#variant.Inline)
|
|
|
|
Viewport mode for ratatui apps. Source: [inline.rs](./inline.rs).
|
2023-07-24 19:05:37 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=inline --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Inline][inline.gif]
|
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## Layout
|
|
|
|
|
|
|
|
Demonstrates the [`Layout`](https://docs.rs/ratatui/latest/ratatui/layout/struct.Layout.html) and
|
|
|
|
interaction between each constraint. Source: [layout.rs](./layout.rs).
|
2023-07-24 19:05:37 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=layout --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Layout][layout.gif]
|
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## List
|
|
|
|
|
|
|
|
Demonstrates the [`List`](https://docs.rs/ratatui/latest/ratatui/widgets/struct.List.html) widget.
|
|
|
|
Source: [list.rs](./list.rs).
|
2023-07-24 19:05:37 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=list --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![List][list.gif]
|
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## Modifiers
|
|
|
|
|
|
|
|
Demonstrates the style
|
|
|
|
[`Modifiers`](https://docs.rs/ratatui/latest/ratatui/style/struct.Modifier.html). Source:
|
|
|
|
[modifiers.rs](./modifiers.rs).
|
2023-08-11 01:36:12 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=modifiers --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Modifiers][modifiers.gif]
|
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## Panic
|
|
|
|
|
|
|
|
Demonstrates how to handle panics by ensuring that panic messages are written correctly to the
|
|
|
|
screen. Source: [panic.rs](./panic.rs).
|
2023-07-24 19:05:37 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=panic --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Panic][panic.gif]
|
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## Paragraph
|
|
|
|
|
|
|
|
Demonstrates the [`Paragraph`](https://docs.rs/ratatui/latest/ratatui/widgets/struct.Paragraph.html)
|
|
|
|
widget. Source: [paragraph.rs](./paragraph.rs)
|
2023-07-24 19:05:37 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=paragraph --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Paragraph][paragraph.gif]
|
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## Popup
|
|
|
|
|
|
|
|
Demonstrates how to render a widget over the top of previously rendered widgets using the
|
|
|
|
[`Clear`](https://docs.rs/ratatui/latest/ratatui/widgets/struct.Clear.html) widget. Source:
|
|
|
|
[popup.rs](./popup.rs).
|
2023-07-24 19:05:37 +00:00
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
>
|
2023-07-24 19:05:37 +00:00
|
|
|
```shell
|
|
|
|
cargo run --example=popup --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Popup][popup.gif]
|
|
|
|
|
2023-12-14 02:25:21 +00:00
|
|
|
## Ratatui-logo
|
|
|
|
|
|
|
|
A fun example of using half blocks to render graphics Source:
|
|
|
|
[ratatui-logo.rs](./ratatui-logo.rs).
|
|
|
|
|
|
|
|
>
|
|
|
|
```shell
|
|
|
|
cargo run --example=ratatui-logo --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Ratatui Logo][ratatui-logo.gif]
|
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## Scrollbar
|
|
|
|
|
|
|
|
Demonstrates the [`Scrollbar`](https://docs.rs/ratatui/latest/ratatui/widgets/struct.Scrollbar.html)
|
|
|
|
widget. Source: [scrollbar.rs](./scrollbar.rs).
|
2023-07-24 19:05:37 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=scrollbar --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Scrollbar][scrollbar.gif]
|
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## Sparkline
|
|
|
|
|
|
|
|
Demonstrates the [`Sparkline`](https://docs.rs/ratatui/latest/ratatui/widgets/struct.Sparkline.html)
|
|
|
|
widget. Source: [sparkline.rs](./sparkline.rs).
|
|
|
|
|
2023-07-24 19:05:37 +00:00
|
|
|
```shell
|
|
|
|
cargo run --example=sparkline --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Sparkline][sparkline.gif]
|
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## Table
|
|
|
|
|
|
|
|
Demonstrates the [`Table`](https://docs.rs/ratatui/latest/ratatui/widgets/struct.Table.html) widget.
|
|
|
|
Source: [table.rs](./table.rs).
|
2023-07-24 19:05:37 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=table --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Table][table.gif]
|
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## Tabs
|
|
|
|
|
|
|
|
Demonstrates the [`Tabs`](https://docs.rs/ratatui/latest/ratatui/widgets/struct.Tabs.html) widget.
|
|
|
|
Source: [tabs.rs](./tabs.rs).
|
2023-07-24 19:05:37 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=tabs --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Tabs][tabs.gif]
|
|
|
|
|
2023-09-02 00:26:01 +00:00
|
|
|
## User Input
|
|
|
|
|
|
|
|
Demonstrates one approach to accepting user input. Source [user_input.rs](./user_input.rs).
|
|
|
|
|
2024-01-03 01:20:50 +00:00
|
|
|
> [!NOTE]
|
|
|
|
> Consider using [`tui-textarea`](https://crates.io/crates/tui-textarea) or
|
2023-09-02 00:26:01 +00:00
|
|
|
> [`tui-input`](https://crates.io/crates/tui-input) crates for more functional text entry UIs.
|
2023-07-24 19:05:37 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=user_input --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![User Input][user_input.gif]
|
|
|
|
|
2024-01-18 09:56:06 +00:00
|
|
|
## How to update these examples
|
|
|
|
|
|
|
|
These gifs were created using [VHS](https://github.com/charmbracelet/vhs). Each example has a
|
|
|
|
corresponding `.tape` file that holds instructions for how to generate the images. Note that the
|
|
|
|
images themselves are stored in a separate `images` git branch to avoid bloating the main
|
|
|
|
repository.
|
|
|
|
|
2023-07-24 19:05:37 +00:00
|
|
|
<!--
|
|
|
|
|
2024-01-18 09:56:06 +00:00
|
|
|
Links to images to make them easier to update in bulk. Use the following script to update and upload
|
|
|
|
the examples to the images branch. (Requires push access to the branch).
|
|
|
|
|
2023-07-24 19:05:37 +00:00
|
|
|
```shell
|
2023-09-02 01:26:49 +00:00
|
|
|
examples/generate.bash
|
2023-07-24 19:05:37 +00:00
|
|
|
```
|
|
|
|
-->
|
2023-10-20 19:41:36 +00:00
|
|
|
|
2023-09-02 01:26:49 +00:00
|
|
|
[barchart.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/barchart.gif?raw=true
|
|
|
|
[block.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/block.gif?raw=true
|
|
|
|
[calendar.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/calendar.gif?raw=true
|
|
|
|
[canvas.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/canvas.gif?raw=true
|
|
|
|
[chart.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/chart.gif?raw=true
|
|
|
|
[colors.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/colors.gif?raw=true
|
|
|
|
[custom_widget.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/custom_widget.gif?raw=true
|
|
|
|
[demo.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/demo.gif?raw=true
|
2023-10-20 19:41:36 +00:00
|
|
|
[demo2.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/demo2.gif?raw=true
|
2023-09-02 01:26:49 +00:00
|
|
|
[gauge.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/gauge.gif?raw=true
|
|
|
|
[hello_world.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/hello_world.gif?raw=true
|
|
|
|
[inline.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/inline.gif?raw=true
|
|
|
|
[layout.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/layout.gif?raw=true
|
|
|
|
[list.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/list.gif?raw=true
|
|
|
|
[modifiers.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/modifiers.gif?raw=true
|
|
|
|
[panic.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/panic.gif?raw=true
|
|
|
|
[paragraph.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/paragraph.gif?raw=true
|
|
|
|
[popup.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/popup.gif?raw=true
|
2023-12-14 02:25:21 +00:00
|
|
|
[ratatui-logo.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/ratatui-logo.gif?raw=true
|
2023-09-02 01:26:49 +00:00
|
|
|
[scrollbar.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/scrollbar.gif?raw=true
|
|
|
|
[sparkline.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/sparkline.gif?raw=true
|
|
|
|
[table.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/table.gif?raw=true
|
|
|
|
[tabs.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/tabs.gif?raw=true
|
|
|
|
[user_input.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/user_input.gif?raw=true
|
2024-01-18 09:56:06 +00:00
|
|
|
|
|
|
|
[alpha version of Ratatui]: https://crates.io/crates/ratatui/versions
|
|
|
|
[BREAKING-CHANGES.md]: https://github.com/ratatui-org/ratatui/blob/main/BREAKING-CHANGES.md
|