1 2 3 4 5 6 7 8
use crate::widgets::file_system_tree::FileSystemTree; impl<'a> FileSystemTree<'a> { pub fn with_file_style(mut self, style: ratatui::style::Style) -> Self { self.config.file_style = style; self } }