mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-22 20:53:19 +00:00
Update README
This commit is contained in:
parent
06a3c9346b
commit
dea9818c59
1 changed files with 15 additions and 15 deletions
30
README.md
30
README.md
|
@ -41,9 +41,10 @@ tui = "0.1.1"
|
|||
|
||||
### Create the terminal interface
|
||||
|
||||
The first thing to do is to choose from one of the two backends:
|
||||
|
||||
For Termion:
|
||||
Every application using `tui` should start by instantiating a `Terminal`. It is
|
||||
a light abstraction over available backends that provides basic functionalities
|
||||
such as clearing the screen, hiding the cursor, etc. By default only the `termion`
|
||||
backend is available.
|
||||
|
||||
```rust
|
||||
use tui::Terminal;
|
||||
|
@ -55,7 +56,17 @@ fn main() {
|
|||
}
|
||||
```
|
||||
|
||||
For Rustbox:
|
||||
If for some reason, you might want to use the `rustbox` backend instead, you
|
||||
need the to replace your `tui` dependency specification by:
|
||||
|
||||
```toml
|
||||
[dependencies.tui]
|
||||
version = "0.1.2"
|
||||
default-features = false
|
||||
features = ['rustbox']
|
||||
```
|
||||
|
||||
and then create the terminal in a similar way:
|
||||
|
||||
```rust
|
||||
use tui::Terminal;
|
||||
|
@ -67,17 +78,6 @@ fn main() {
|
|||
}
|
||||
```
|
||||
|
||||
By default both backends are enabled but you might want to use only one. To do
|
||||
so, you should disable the default-features for this library and specify the
|
||||
chosen backend in features.
|
||||
|
||||
```toml
|
||||
[dependencies.tui]
|
||||
version = "0.1.1"
|
||||
default-features = false
|
||||
features = ['termion']
|
||||
```
|
||||
|
||||
### Layout
|
||||
|
||||
The library comes with a basic yet useful layout management object called
|
||||
|
|
Loading…
Reference in a new issue