1
2
3
4
5
6
7
8
use rui::*;

fn main() {
    rui(zstack((
        "This is a test.",
        circle().color(RED_HIGHLIGHT).padding(Auto),
    )));
}