ui2.rs

 1//! # UI – Zed UI Primitives & Components
 2//!
 3//! This crate provides a set of UI primitives and components that are used to build all of the elements in Zed's UI.
 4//!
 5//! ## Work in Progress
 6//!
 7//! This crate is still a work in progress. The initial primitives and components are built for getting all the UI on the screen,
 8//! much of the state and functionality is mocked or hard codeded, and performance has not been a focus.
 9//!
10
11#![doc = include_str!("../docs/hello-world.md")]
12#![doc = include_str!("../docs/building-ui.md")]
13#![doc = include_str!("../docs/todo.md")]
14
15mod clickable;
16mod components;
17mod fixed;
18pub mod prelude;
19mod selectable;
20mod styled_ext;
21mod styles;
22pub mod utils;
23
24pub use clickable::*;
25pub use components::*;
26pub use fixed::*;
27pub use prelude::*;
28pub use selectable::*;
29pub use styled_ext::*;
30pub use styles::*;