Skip to main content

aprender_test_showcase/tui/
mod.rs

1//! TUI Frontend for Calculator
2//!
3//! Probar: Visual feedback - Visual feedback through terminal interface
4
5mod app;
6mod input;
7mod keypad;
8mod ui;
9
10pub use app::CalculatorApp;
11pub use input::{InputHandler, KeyAction};
12pub use keypad::{ButtonAction, Keypad, KeypadButton, KeypadWidget, Rect, TextBuffer};
13pub use ui::render_to_buffer;