summaryrefslogtreecommitdiff
path: root/src/render
diff options
context:
space:
mode:
Diffstat (limited to 'src/render')
-rw-r--r--src/render/footer.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/render/footer.rs b/src/render/footer.rs
new file mode 100644
index 0000000..9e74de8
--- /dev/null
+++ b/src/render/footer.rs
@@ -0,0 +1,20 @@
+use ratatui::{style::{Modifier, Style}, widgets::{Paragraph, Widget}};
+
+
+#[derive(Debug, Default)]
+pub struct Footer;
+
+impl Footer {
+ pub fn new() -> Footer {
+ return Footer {}
+ }
+}
+
+impl Widget for &Footer {
+
+ fn render(self, area: ratatui::prelude::Rect, buf: &mut ratatui::prelude::Buffer) {
+ Paragraph::new("hellow")
+ .style(Style::default().add_modifier(Modifier::REVERSED))
+ .render(area, buf);
+ }
+}