Warning, /multimedia/audiotube/src/contents/ui/HorizontalCoverView.qml is written in an unsupported language. File is not indexed.
0001 // SPDX-FileCopyrightText: 2022 Jonah BrĂ¼chert <jbb@kaidan.im> 0002 // 0003 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 0004 0005 import QtQuick 2.15 0006 import QtQuick.Controls 2.15 as Controls 0007 0008 Controls.ScrollView { 0009 property alias model: listView.model 0010 property alias delegate: listView.delegate 0011 property alias count: listView.count 0012 property alias itemSpacing: listView.spacing 0013 0014 height: 250 0015 contentHeight: 265 0016 0017 ListView { 0018 id: listView 0019 orientation: Qt.Horizontal 0020 spacing: 10 0021 height: 250 0022 0023 reuseItems: true 0024 0025 header: Item { 0026 width: 20 0027 } 0028 } 0029 }