blaeck 0.4.0

A component-based terminal UI framework for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
use blaeck::prelude::*;

pub fn build_ui() -> Element {
    element! {
        Box(padding: 1.0, border_style: BorderStyle::Single) {
            Text(content: "Hello from Blaeck!", color: Color::Green, bold: true)
            Text(content: "Inline rendering - no fullscreen!")
        }
    }
}