mirror of
https://github.com/postmannen/ctrl.git
synced 2025-01-08 05:09:15 +00:00
12 lines
189 B
Go
12 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
|
||
|
}
|