#file-tree #iced #widgets #toolkit #enums #path-buf #state

yanked iced_file_tree

A lightweight file tree widget for the iced toolkit

5 unstable releases

0.3.1 Mar 1, 2025
0.3.0 Jan 31, 2025
0.2.3 Jan 29, 2025
0.1.5 Dec 14, 2024
0.1.1 Nov 22, 2024

#10 in #file-tree

Download history 284/week @ 2024-12-09 87/week @ 2024-12-16 94/week @ 2024-12-30 302/week @ 2025-01-06 87/week @ 2025-01-13 32/week @ 2025-01-20 274/week @ 2025-01-27 77/week @ 2025-02-03 30/week @ 2025-02-10 86/week @ 2025-02-17 200/week @ 2025-02-24 59/week @ 2025-03-03 3/week @ 2025-03-10

272 downloads per month

MIT license

31KB
599 lines

Iced File Tree

Crates.io Documentation Iced License

A lightweight file tree widget for the iced toolkit.

Usage

Include iced_file_tree as a dependency in your Cargo.toml:

[dependencies]
iced = "0.13.1"
iced_file_tree = "0.3.1"

Example

use iced::widget::scrollable;
use iced_file_tree::file_tree;

enum Message {
    FileTreeMessage(PathBuf),
    // ...
}

fn view(state: &State) -> Element<'_, Message> {
    let path: PathBuf = // ...

    scrollable(
        file_tree(path)
            .on_double_click(Message::FileTreeMessage),
    )
    .into()
}

The FileTree widget is recommended to be put in an iced Scrollable.

Dependencies

~40–76MB
~1.5M SLoC