pub trait Widget {
// Required methods
fn render(&self) -> Paragraph<'_>;
fn handle_input(&mut self, key: KeyEvent) -> Option<String>;
}Expand description
Core Widget trait - essentielles Rendering
pub trait Widget {
// Required methods
fn render(&self) -> Paragraph<'_>;
fn handle_input(&mut self, key: KeyEvent) -> Option<String>;
}Core Widget trait - essentielles Rendering