Skip to content

Commit c3fdd35

Browse files
committed
WIP
1 parent 13b59fb commit c3fdd35

File tree

6 files changed

+808
-0
lines changed

6 files changed

+808
-0
lines changed

Cargo.lock

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[package]
2+
name = "hierarchical_list_drag_and_drop"
3+
version = "0.1.0"
4+
authors = ["Emil Ernerfeldt <[email protected]>"]
5+
license = "MIT OR Apache-2.0"
6+
edition = "2021"
7+
rust-version = "1.72"
8+
publish = false
9+
10+
11+
[dependencies]
12+
eframe = { path = "../../crates/eframe", features = [
13+
"__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO
14+
] }
15+
16+
17+
env_logger = { version = "0.10", default-features = false, features = [
18+
"auto-color",
19+
"humantime",
20+
] }
21+
22+
rand = "0.8.5"
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Example showing how to implement drag-and-drop in a hierarchical list
2+
3+
```sh
4+
cargo run -p hierarchical_drag_and_drop
5+
```
6+

0 commit comments

Comments
 (0)