polyhorn-ui 0.4.0

Shared API contract for multi-platform Polyhorn UI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Built-in components that must be implemented by every Polyhorn platform that
//! renders to a graphical user interface.

mod image;
mod modal;
mod scrollable;
mod status_bar;
mod text;
mod view;
mod window;

pub use image::Image;
pub use modal::Modal;
pub use scrollable::Scrollable;
pub use status_bar::{StatusBar, StatusBarStyle};
pub use text::Text;
pub use view::View;
pub use window::Window;