mirror of
https://github.com/rivo/tview.git
synced 2024-11-17 03:26:09 +00:00
14 lines
253 B
Go
14 lines
253 B
Go
// Demo code for the Box primitive.
|
|
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)
|
|
}
|
|
}
|