mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2024-11-15 14:05:17 +00:00
17 lines
329 B
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
|
||
|
}
|
||
|
}
|