pixel-widgets 0.9.1

Component based UI library for graphical rust applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(feature = "winit")]
#[cfg(feature = "wgpu")]
pub use crate::sandbox::Sandbox;
pub use crate::{
    component::{Component, Context},
    draw::Color,
    layout::{Align, Direction, Rectangle, Size},
    node::component_node::State,
    node::*,
    style::{
        builder::{RuleBuilder, StyleBuilder},
        Style,
    },
    view,
    widget::prelude::*,
    Ui,
};