Код IT
← Каталог

Экосистема приложений на Rust — Slint

Фрагмент из «Экосистема приложений на Rust»: Slint.

Plain text main.txt
export component MainWindow inherits Window {
    width: 300px;
    height: 150px;
    Text {
        text: "Значение: " + root.counter;
        x: 20px;
        y: 40px;
    }
    Button {
        text: "+";
        clicked => { root.increment(); }
        x: 20px;
        y: 80px;
    }
}
export component MainWindow inherits Window {
    width: 300px;
    height: 150px;
    Text {
        text: "Значение: " + root.counter;
        x: 20px;
        y: 40px;
    }
    Button {
        text: "+";
        clicked => { root.increment(); }
        x: 20px;
        y: 80px;
    }
}