13 lines
283 B
Rust
13 lines
283 B
Rust
use ratatui::{text::Line, widgets::Widget};
|
|
|
|
pub struct StatusBar;
|
|
|
|
impl Widget for StatusBar {
|
|
fn render(self, area: ratatui::prelude::Rect, buf: &mut ratatui::prelude::Buffer)
|
|
where
|
|
Self: Sized {
|
|
|
|
Line::from("Up Down Left right").render(area, buf);
|
|
}
|
|
}
|