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

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.