14 lines
226 B
Go
Raw Normal View History

2023-08-18 16:52:40 +00:00
package empty
import (
"github.com/gdamore/tcell/v2"
"github.com/rivo/tview"
)
func New() *tview.Box {
view := tview.NewBox()
view.SetBackgroundColor(tcell.ColorDefault)
view.SetBorderPadding(1, 1, 1, 1)
return view
}