mirror of
https://github.com/enso-org/enso.git
synced 2024-11-28 15:32:45 +03:00
7fa4e5e369
**Note**: This PR also contains content of previous Grid View PR. We decided to discard the previous, because this one did some refactoring of old one, and it's not a big addition. Added a scrollable::GridView component, which just embeds the GridView in ScrollArea. Also, re-worked the idea of text layers. https://user-images.githubusercontent.com/3919101/179020359-512ee127-c333-4f86-bff5-f1cb4154e03c.mp4
29 lines
1.2 KiB
TOML
29 lines
1.2 KiB
TOML
[package]
|
|
name = "ensogl-examples"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
ensogl-example-animation = { path = "animation" }
|
|
ensogl-example-complex-shape-system = { path = "complex-shape-system" }
|
|
ensogl-example-custom-shape-system = { path = "custom-shape-system" }
|
|
ensogl-example-dom-symbols = { path = "dom-symbols" }
|
|
ensogl-example-drop-manager = { path = "drop-manager" }
|
|
ensogl-example-easing-animator = { path = "easing-animator" }
|
|
ensogl-example-glyph-system = { path = "glyph-system" }
|
|
ensogl-example-list-view = { path = "list-view" }
|
|
ensogl-example-grid-view = { path = "grid-view" }
|
|
ensogl-example-mouse-events = { path = "mouse-events" }
|
|
ensogl-example-profiling-run-graph = { path = "profiling-run-graph" }
|
|
ensogl-example-render-profile-flamegraph = { path = "render-profile-flamegraph" }
|
|
ensogl-example-scroll-area = { path = "scroll-area" }
|
|
ensogl-example-shape-system = { path = "shape-system" }
|
|
ensogl-example-slider = { path = "slider" }
|
|
ensogl-example-sprite-system = { path = "sprite-system" }
|
|
ensogl-example-sprite-system-benchmark = { path = "sprite-system-benchmark" }
|
|
ensogl-example-text-area = { path = "text-area" }
|