feat: Pagination support for jumping 20 items at a time in all table views [#45]

This commit is contained in:
2025-08-08 17:04:28 -06:00
parent 345bb8ce03
commit e96af7410e
11 changed files with 362 additions and 7 deletions
+5
View File
@@ -49,6 +49,11 @@ pub trait Scrollable {
fn scroll_to_bottom(&mut self);
}
pub trait Paginated {
fn page_down(&mut self);
fn page_up(&mut self);
}
#[derive(Default)]
pub struct ScrollableText {
pub items: Vec<String>,