TUI Toolkit for Rust
A comprehensive collection of reusable TUI components for ratatui. Build beautiful terminal interfaces with ease.
$cargo add ratkit
use ratkit::primitives::button::{Button, ButtonState};use ratatui::Frame;fn render_button(frame: &mut Frame) { let button = Button::new("Click Me") .style(Style::default().fg(Color::White)) .highlight_style(Style::default().fg(Color::Yellow)); frame.render_widget(button, frame.area());}