programming:azul

This is an old revision of the document!


Azul

A powerful library for building GUI in Rust.

To call CSS you need to create a .css file somewhere in and point to it at the beginning of your app with a line like this one :

macro_rules! CSS_PATH {
    () => {
        concat!(env!("CARGO_MANIFEST_DIR"), "/src/style.css")
    };
}

To give a class to an item you hand it over in the Layout Implementation of your app with a line such as :

Dom::div().with_child(label.with_class("labels"))
  • I am currently encountering a problem on my RBS while running the examples and even simple test programs I write with the redrawing. The content of the application disappears then reappears leaving a white blank page in between. I do not yet know where this comes from. For further investigation I will test the same examples and test programs on my main computer.
  • programming/azul.1570295366.txt.gz
  • Last modified: 2020/06/01 16:36
  • (external edit)