ratatui_toolkit/widgets/file_system_tree/constructors/
with_selected_style.rs1use crate::widgets::file_system_tree::FileSystemTree;
2
3impl<'a> FileSystemTree<'a> {
4 pub fn with_selected_style(mut self, style: ratatui::style::Style) -> Self {
5 self.config.selected_style = style;
6 self
7 }
8}