gpui-component 0.5.1

UI components for building fantastic desktop application by using 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()
}