Crate tui_box_text

Crate tui_box_text 

Source
Expand description

A [Ratatui] widget to draw delightfully boxy text with line-drawing characters. Part of the tui-widgets suite by Joshka.

Demo

Crate badge Docs Badge Deps Badge License Badge Coverage Badge Discord Badge

GitHub Repository · API Docs · Examples · Changelog · Contributing

§Usage

Create a BoxChar and render it into a region of your frame.

use tui_box_text::BoxChar;

let letter = BoxChar::new('A');
frame.render_widget(&letter, frame.area());

§More widgets

For the full suite of widgets, see tui-widgets.

Structs§

BoxChar