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
2021-06-30 12:21:10 +02:00

11 lines
189 B
Go

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
}