@ostov-larion/yuta

1.1.1 • Public • Published

Yuta

Declarative UI Framework based on GTK4.

Hello World

const {
    App, 
    adw: {Window, HeaderBar, WindowTitle, Clamp},
    gtk: {Box, Label}, 
    on,
    set: {content, orientation, titleWidget, title, child, vexpand, label}, 
    orientation: {vertical}, 
    go: {append, present, setDefaultSize},
    style,
    quit
} = require("yuta")

App("org.yuta.Test", app => 
    Window(
        setDefaultSize(400,400),
        on["close-request"](quit(app)),
        content(
            Box(
                orientation(vertical),
                append(
                    HeaderBar(
                        titleWidget(WindowTitle(title("Hello World App"))),
                    )
                ),
                append(
                    Clamp(
                        child(
                            Label(
                                vexpand(true),
                                style("title-1"),
                                label("Hello World")
                            )
                        )
                    )
                )
            )
        ),
        present()
    )
)

Package Sidebar

Install

npm i @ostov-larion/yuta

Weekly Downloads

3

Version

1.1.1

License

MIT

Unpacked Size

9.01 kB

Total Files

6

Last publish

Collaborators

  • ostov-larion