2023-07-24 19:05:37 +00:00
|
|
|
# Examples
|
|
|
|
|
2024-04-01 20:34:03 +00:00
|
|
|
This folder might use unreleased code. View the examples for the latest release instead.
|
2024-01-18 09:56:06 +00:00
|
|
|
|
2024-01-12 02:08:54 +00:00
|
|
|
> [!WARNING]
|
2024-01-11 07:44:23 +00:00
|
|
|
>
|
2024-04-01 20:34:03 +00:00
|
|
|
> There may be backwards incompatible changes in these examples, as they are designed to compile
|
2024-01-18 09:56:06 +00:00
|
|
|
> 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
|
2024-04-01 20:34:03 +00:00
|
|
|
> matches that version. E.g. <https://github.com/ratatui-org/ratatui/tree/v0.26.1/examples>.
|
|
|
|
> - If you're viewing this file on GitHub, 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. E.g. `git switch --detach v0.26.1`.
|
|
|
|
> - Use the latest [alpha version of Ratatui] in your app. These are released weekly on Saturdays.
|
2024-01-18 09:56:06 +00:00
|
|
|
> - 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
|
|
|
|
2024-08-06 08:10:58 +00:00
|
|
|
## Design choices
|
|
|
|
|
|
|
|
The examples contain some opinionated choices in order to make it easier for newer rustaceans to
|
|
|
|
easily be productive in creating applications:
|
|
|
|
|
|
|
|
- Each example has an App struct, with methods that implement a main loop, handle events and drawing
|
|
|
|
the UI.
|
|
|
|
- We use color_eyre for handling errors and panics. See [How to use color-eyre with Ratatui] on the
|
|
|
|
website for more information about this.
|
|
|
|
- Common code is not extracted into a separate file. This makes each example self-contained and easy
|
|
|
|
to read as a whole.
|
|
|
|
|
|
|
|
Not every example has been updated with all these points in mind yet, however over time they will
|
|
|
|
be. None of the above choices are strictly necessary for Ratatui apps, but these choices make
|
|
|
|
examples easier to run, maintain and explain. These choices are designed to help newer users fall
|
|
|
|
into the pit of success when incorporating example code into their own apps. We may also eventually
|
|
|
|
move some of these design choices into the core of Ratatui to simplify apps.
|
|
|
|
|
|
|
|
[How to use color-eyre with Ratatui]: https://ratatui.rs/how-to/develop-apps/color_eyre/
|
|
|
|
|
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]
|
|
|
|
|
2024-08-06 20:09:40 +00:00
|
|
|
## Barchart (Grouped)
|
|
|
|
|
|
|
|
Demonstrates the [`BarChart`](https://docs.rs/ratatui/latest/ratatui/widgets/struct.BarChart.html)
|
|
|
|
widget with groups. Source: [barchart-grouped.rs](./barchart-grouped.rs).
|
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=barchart-grouped --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Barchart Grouped][barchart-grouped.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
|
|
|
|
2024-07-10 04:13:26 +00:00
|
|
|
## Constraint Explorer
|
|
|
|
|
|
|
|
Demonstrates the behaviour of each
|
|
|
|
[`Constraint`](https://docs.rs/ratatui/latest/ratatui/layout/enum.Constraint.html) option with
|
|
|
|
respect to each other across different `Flex` modes.
|
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=constraint-explorer --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Constraint Explorer][constraint-explorer.gif]
|
|
|
|
|
|
|
|
## Constraints
|
|
|
|
|
|
|
|
Demonstrates how to use
|
|
|
|
[`Constraint`](https://docs.rs/ratatui/latest/ratatui/layout/enum.Constraint.html) options for
|
|
|
|
defining layout element sizes.
|
|
|
|
|
|
|
|
![Constraints][constraints.gif]
|
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=constraints --features=crossterm
|
|
|
|
```
|
|
|
|
|
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]
|
|
|
|
|
2024-07-10 04:13:26 +00:00
|
|
|
## Flex
|
|
|
|
|
|
|
|
Demonstrates the different [`Flex`](https://docs.rs/ratatui/latest/ratatui/layout/enum.Flex.html)
|
|
|
|
modes for controlling layout space distribution.
|
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=flex --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Flex][flex.gif]
|
|
|
|
|
2024-05-24 18:42:52 +00:00
|
|
|
## Line Gauge
|
|
|
|
|
|
|
|
Demonstrates the [`Line
|
|
|
|
Gauge`](https://docs.rs/ratatui/latest/ratatui/widgets/struct.LineGauge.html) widget. Source:
|
|
|
|
[line_gauge.rs](./line_gauge.rs).
|
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=line_gauge --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![LineGauge][line_gauge.gif]
|
|
|
|
|
2024-07-10 04:13:26 +00:00
|
|
|
## Hyperlink
|
|
|
|
|
|
|
|
Demonstrates how to use OSC 8 to create hyperlinks in the terminal.
|
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=hyperlink --features="crossterm unstable-widget-ref"
|
|
|
|
```
|
|
|
|
|
|
|
|
![Hyperlink][hyperlink.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]
|
|
|
|
|
2024-07-10 04:13:26 +00:00
|
|
|
## Minimal
|
|
|
|
|
|
|
|
Demonstrates how to create a minimal `Hello World!` program.
|
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=minimal --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Minimal][minimal.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]
|
|
|
|
|
2024-07-10 04:13:26 +00:00
|
|
|
## Tracing
|
|
|
|
|
|
|
|
Demonstrates how to use the [tracing crate](https://crates.io/crates/tracing) for logging. Creates
|
|
|
|
a file named `tracing.log` in the current directory.
|
|
|
|
|
|
|
|
```shell
|
|
|
|
cargo run --example=tracing --features=crossterm
|
|
|
|
```
|
|
|
|
|
|
|
|
![Tracing][tracing.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
|
2024-01-24 16:22:46 +00:00
|
|
|
examples/vhs/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
|
2024-08-06 20:09:40 +00:00
|
|
|
[barchart-grouped.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/barchart-grouped.gif?raw=true
|
2023-09-02 01:26:49 +00:00
|
|
|
[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
|
2024-07-10 04:13:26 +00:00
|
|
|
[constraint-explorer.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/constraint-explorer.gif?raw=true
|
|
|
|
[constraints.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/constraints.gif?raw=true
|
2023-09-02 01:26:49 +00:00
|
|
|
[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
|
2024-07-10 04:13:26 +00:00
|
|
|
[flex.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/flex.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
|
2024-07-10 04:13:26 +00:00
|
|
|
[hyperlink.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/hyperlink.gif?raw=true
|
2023-09-02 01:26:49 +00:00
|
|
|
[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
|
2024-05-24 18:42:52 +00:00
|
|
|
[line_gauge.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/line_gauge.gif?raw=true
|
2024-07-10 04:13:26 +00:00
|
|
|
[minimal.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/minimal.gif?raw=true
|
2023-09-02 01:26:49 +00:00
|
|
|
[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
|
2024-01-19 11:26:09 +00:00
|
|
|
[table.gif]: https://vhs.charm.sh/vhs-6njXBytDf0rwPufUtmSSpI.gif
|
2023-09-02 01:26:49 +00:00
|
|
|
[tabs.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/tabs.gif?raw=true
|
2024-07-10 04:13:26 +00:00
|
|
|
[tracing.gif]: https://github.com/ratatui-org/ratatui/blob/images/examples/tracing.gif?raw=true
|
2023-09-02 01:26:49 +00:00
|
|
|
[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
|