1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/github/widget.go

19 lines
277 B
Go

package github
import (
"fmt"
"github.com/rivo/tview"
)
func Widget() tview.Primitive {
widget := tview.NewTextView()
widget.SetBorder(true)
widget.SetDynamicColors(true)
widget.SetTitle(" 🐱 Github ")
fmt.Fprintf(widget, "%s", "This is github")
return widget
}