mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-22 20:53:19 +00:00
2169a0da01
This is a fun example of how to render big text using half blocks
71 lines
1.6 KiB
Rust
71 lines
1.6 KiB
Rust
use std::{
|
|
io::{self, stdout},
|
|
thread::sleep,
|
|
time::Duration,
|
|
};
|
|
|
|
use crossterm::terminal::{disable_raw_mode, enable_raw_mode};
|
|
use indoc::indoc;
|
|
use itertools::izip;
|
|
use ratatui::{prelude::*, widgets::*};
|
|
|
|
/// A fun example of using half block characters to draw a logo
|
|
fn main() -> io::Result<()> {
|
|
let r = indoc! {"
|
|
▄▄▄
|
|
█▄▄▀
|
|
█ █
|
|
"}
|
|
.lines();
|
|
let a = indoc! {"
|
|
▄▄
|
|
█▄▄█
|
|
█ █
|
|
"}
|
|
.lines();
|
|
let t = indoc! {"
|
|
▄▄▄
|
|
█
|
|
█
|
|
"}
|
|
.lines();
|
|
let u = indoc! {"
|
|
▄ ▄
|
|
█ █
|
|
▀▄▄▀
|
|
"}
|
|
.lines();
|
|
let i = indoc! {"
|
|
▄
|
|
█
|
|
█
|
|
"}
|
|
.lines();
|
|
let mut terminal = init()?;
|
|
terminal.draw(|frame| {
|
|
let logo = izip!(r, a.clone(), t.clone(), a, t, u, i)
|
|
.map(|(r, a, t, a2, t2, u, i)| {
|
|
format!("{:5}{:5}{:4}{:5}{:4}{:5}{:5}", r, a, t, a2, t2, u, i)
|
|
})
|
|
.collect::<Vec<_>>()
|
|
.join("\n");
|
|
frame.render_widget(Paragraph::new(logo), frame.size());
|
|
})?;
|
|
sleep(Duration::from_secs(5));
|
|
restore()?;
|
|
println!();
|
|
Ok(())
|
|
}
|
|
|
|
pub fn init() -> io::Result<Terminal<impl Backend>> {
|
|
enable_raw_mode()?;
|
|
let options = TerminalOptions {
|
|
viewport: Viewport::Inline(3),
|
|
};
|
|
Terminal::with_options(CrosstermBackend::new(stdout()), options)
|
|
}
|
|
|
|
pub fn restore() -> io::Result<()> {
|
|
disable_raw_mode()?;
|
|
Ok(())
|
|
}
|