Skip to content
Leo Codes edited this page Sep 29, 2024 · 2 revisions

Osui

Osui is a Go component based TUI library that is extremely easy to use

func main() {
    app := ui.Div( // Div component
        ui.Text("Hello, World!") // Text component
    )

    screen := osui.NewScreen(app)
    screen.Run()
}

Clone this wiki locally