#interactive-applications #ui #size #color #graphics #experimental

hui

Simple UI library for games and other interactive applications

4 releases

0.1.0-alpha.4 Mar 25, 2024
0.1.0-alpha.3 Feb 20, 2024
0.0.2 Feb 17, 2024

#109 in Graphics APIs

Download history 246/week @ 2024-02-12 163/week @ 2024-02-19 12/week @ 2024-02-26 3/week @ 2024-03-04 14/week @ 2024-03-11 137/week @ 2024-03-25 10/week @ 2024-04-01

162 downloads per month
Used in 2 crates

GPL-3.0-or-later

220KB
3.5K SLoC

logo

hUI

Simple UI library for games and other interactive applications crates.io
license (Formerly kubi-ui)


example: mom_downloader example: align_test

Example

code result
Container::default()
  .with_size(size!(100%, 50%))
  .with_align(Alignment::Center)
  .with_padding(5.)
  .with_gap(10.)
  .with_background(frame_rect! {
    color: (0.5, 0.5, 0.5, 1.),
    corner_radius: 10.,
  })
  .with_children(|ui| {
    Text::default()
      .with_text("Hello, world")
      .with_text_size(100)
      .with_color(color::BLACK)
      .add_child(ui);
    Container::default()
      .with_padding((10., 20.))
      .with_background(frame_rect! {
        color: color::DARK_RED,
        corner_radius: (2.5, 30., 2.5, 2.5),
      })
      .with_children(|ui| {
        Text::default()
          .with_text("Lorem ipsum dolor sit amet, consectetur adipiscing elit.")
          .with_text_size(24)
          .add_child(ui);
      })
      .add_child(ui);
  })
  .add_root(ui, size);

Backends

Latest stable release:  crates.io

hui glium (render) winit (platform) wgpu (render)
master hui-glium = <master>
glium = "0.34"
hui-winit = <master>
winit = "0.29"
(support planned)
0.1.0-alpha.4 hui-glium = "0.1.0-alpha.4"
glium = "0.34"
hui-winit = "0.1.0-alpha.4"
winit = "0.29"
N/A
0.1.0-alpha.3 hui-glium = "0.1.0-alpha.3"
glium = "0.34"
N/A
0.1.0-alpha.2 hui-glium = "0.1.0-alpha.2"
glium = "0.34"
N/A
0.1.0-alpha.1 hui-glium = "0.1.0-alpha.1"
glium = "0.34"
N/A

MSRV

1.75

Dependencies

~17MB
~210K SLoC