enso/lib/rust/ensogl/component/grid-view/Cargo.toml
Adam Obuchowicz 7fa4e5e369
Grid View with Scrolling (#3588)
**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
2022-07-19 08:39:23 +00:00

18 lines
450 B
TOML

[package]
name = "ensogl-grid-view"
version = "0.1.0"
authors = ["Enso Team <contact@enso.org>"]
edition = "2021"
[dependencies]
enso-frp = { path = "../../../frp" }
ensogl-core = { path = "../../core" }
ensogl-hardcoded-theme = { path = "../../app/theme/hardcoded" }
ensogl-shadow = { path = "../shadow" }
ensogl-text = { path = "../text" }
ensogl-scroll-area = { path = "../scroll-area" }
itertools = "0.10.3"
[dev-dependencies]
approx = "0.5.1"