2018-01-03 20:13:32 +00:00
|
|
|
// Demo code for the Box primitive.
|
2017-12-27 15:05:00 +00:00
|
|
|
package main
|
|
|
|
|
2018-08-07 07:23:19 +00:00
|
|
|
import (
|
2020-10-18 12:15:57 +00:00
|
|
|
"github.com/gdamore/tcell/v2"
|
2018-08-07 07:23:19 +00:00
|
|
|
"github.com/rivo/tview"
|
|
|
|
)
|
2017-12-27 15:05:00 +00:00
|
|
|
|
|
|
|
func main() {
|
|
|
|
box := tview.NewBox().
|
|
|
|
SetBorder(true).
|
2018-08-07 07:23:19 +00:00
|
|
|
SetBorderAttributes(tcell.AttrBold).
|
2018-04-01 19:19:10 +00:00
|
|
|
SetTitle("A [red]c[yellow]o[green]l[darkcyan]o[blue]r[darkmagenta]f[red]u[yellow]l[white] [black:red]c[:yellow]o[:green]l[:darkcyan]o[:blue]r[:darkmagenta]f[:red]u[:yellow]l[white:] [::bu]title")
|
2017-12-27 15:05:00 +00:00
|
|
|
if err := tview.NewApplication().SetRoot(box, true).Run(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|