mirror of
https://github.com/rivo/tview.git
synced 2026-04-26 13:25:51 +03:00
2
Box
rivo edited this page 2020-12-04 16:36:09 +01:00
A simple Box with a title:
Code:
package main
import "github.com/rivo/tview"
func main() {
box := tview.NewBox().
SetBorder(true).
SetTitle("Box Demo")
if err := tview.NewApplication().SetRoot(box, true).Run(); err != nil {
panic(err)
}
}
