feat(table): make TableState::new const (#1040)

This commit is contained in:
EdJoPaTo 2024-04-22 07:23:56 +02:00 committed by GitHub
parent 81b96338ea
commit bf0923473c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -60,8 +60,11 @@ impl TableState {
/// # use ratatui::{prelude::*, widgets::*};
/// let state = TableState::new();
/// ```
pub fn new() -> Self {
Self::default()
pub const fn new() -> Self {
Self {
offset: 0,
selected: None,
}
}
/// Sets the index of the first row to be displayed