14 lines
248 B
Go
14 lines
248 B
Go
|
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
|
||
|
}
|