Warning, /maui/vvave/src/widgets/InfoView/LyricsView.qml is written in an unsupported language. File is not indexed.

0001 import QtQuick 2.10
0002 import QtQuick.Controls 2.10
0003 import org.mauikit.controls 1.0 as Maui
0004 
0005 Item
0006 {
0007     id: infoRoot
0008 
0009     anchors.centerIn: parent
0010 
0011     property string lyrics
0012 
0013     Rectangle
0014     {
0015         anchors.fill: parent
0016         z: -999
0017         color: backgroundColor
0018     }
0019 
0020     Text
0021     {
0022         text: lyrics || "Nothing here"
0023         color: foregroundColor
0024         font.pointSize: Maui.Style.fontSizes.big
0025         horizontalAlignment: Qt.AlignHCenter
0026         textFormat: Text.StyledText
0027     }
0028 
0029 }