mathypad 0.1.12

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

mod events;
mod render;

#[cfg(test)]
mod tests;

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