gomu/playingbar.go

9 lines
154 B
Go
Raw Normal View History

2020-06-19 16:22:20 +08:00
package main
import "github.com/rivo/tview"
func NowPlayingBar() *tview.Box {
return tview.NewBox().SetBorder(true).
SetTitle("Currently Playing")
}