gpui-component 0.6.0

GPUI Component: the styled component library of GPUI Kit, with 60+ desktop UI components for GPUI.
Documentation
mod field;
mod form;

pub use field::*;
pub use form::*;

/// Create a new [`Form`] with a vertical layout.
pub fn v_form() -> Form {
    Form::vertical()
}

/// Create a new [`Form`] with a horizontal layout.
pub fn h_form() -> Form {
    Form::horizontal()
}

/// Create a new [`Field`].
pub fn field() -> Field {
    Field::new()
}