add stub lyrics viewer component

This commit is contained in:
Drew Weymouth
2024-03-03 13:51:54 -08:00
parent eaef666b0c
commit e9142f9ebf
2 changed files with 18 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
package widgets
import "fyne.io/fyne/v2/widget"
type LyricsViewer struct {
widget.Label
}
func NewLyricsViewer() *LyricsViewer {
l := &LyricsViewer{Label: widget.Label{
Text: "Lyrics not available",
}}
l.ExtendBaseWidget(l)
return l
}