mathypad 0.1.2

A smart TUI calculator that understands units and makes complex calculations simple.
Documentation
1
2
3
4
5
6
7
8
9
//! User interface components and rendering
//!
//! This module handles all TUI rendering and event handling functionality.

mod events;
mod render;

pub use events::run_interactive_mode;
pub use render::{parse_colors, render_results_panel, render_text_area, ui};