1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2024-05-13 01:22:43 +00:00
harbour-sailfin/sailfish/qml/components/PlayQueue.qml

17 lines
329 B
QML

import QtQuick 2.6
import Sailfish.Silica 1.0
import nl.netsoj.chris.Jellyfin 1.0
import "music"
SilicaListView {
header: SectionHeader { text: qsTr("Play queue") }
delegate: SongDelegate {
artists: model.artists
name: model.name
width: parent.width
indexNumber: ListView.index
}
}