tview test

This commit is contained in:
Thomas Sindt
2026-02-27 21:51:47 +01:00
parent 768cf306d0
commit 2ecab6c3ed
3 changed files with 107 additions and 0 deletions

12
tvtest/tvtest.go Normal file
View File

@@ -0,0 +1,12 @@
package main
import (
"github.com/rivo/tview"
)
func main() {
box := tview.NewBox().SetBorder(true).SetTitle("Hello, world!")
if err := tview.NewApplication().SetRoot(box, true).Run(); err != nil {
panic(err)
}
}