1
0
Fork 0
mirror of https://github.com/postmannen/ctrl.git synced 2025-01-08 05:09:15 +00:00
ctrl/stew/infoSlide.go

12 lines
189 B
Go
Raw Normal View History

2021-06-30 10:21:10 +00:00
package stew
import "github.com/rivo/tview"
func infoSlide(app *tview.Application) tview.Primitive {
flex := tview.NewFlex()
flex.SetTitle("info")
flex.SetBorder(true)
return flex
}