We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d19de42 commit ea0e6f9Copy full SHA for ea0e6f9
demo/README.md
@@ -0,0 +1,21 @@
1
+# egui_json_tree demo app
2
+
3
+This demo demonstrates `egui_json_tree` and its capabilities in an `egui`/`eframe` app.
4
5
+See various use cases implemented in the [/apps](https://github.com/dmackdev/egui_json_tree/tree/main/demo/src/apps) folder, which includes:
6
7
+- Automatic expansion of arrays/objects and highlighting, based on search term matches.
8
+- Copying JSON paths and values to the clipboard.
9
+- A JSON editor UI.
10
11
+View this demo online at <https://dmackdev.github.io/egui_json_tree>.
12
13
+Run it locally via one of the commands below:
14
15
+```bash
16
+# Native target:
17
+cargo run -p demo --release
18
19
+# WASM/web target:
20
+trunk serve --release --open
21
+```
0 commit comments