14 lines
248 B
Go
Raw Normal View History

2023-08-17 23:10:09 +00:00
package empty
import (
"github.com/gdamore/tcell/v2"
"github.com/rivo/tview"
)
func New(app *tview.Application) *tview.Box {
view := tview.NewBox()
view.SetBackgroundColor(tcell.ColorDefault)
view.SetBorderPadding(1, 1, 1, 1)
return view
}