This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-app/nymea-app/ui/devicepages/MediaDevicePage.qml
Michael Zanetti 113963a77b add support for tagging
rework the main page completely by using the new features available for tagging
2018-07-02 01:10:31 +02:00

31 lines
754 B
QML

import QtQuick 2.5
import QtQuick.Controls 2.1
import QtQuick.Layouts 1.1
import Nymea 1.0
import "../components"
import "../customviews"
DevicePageBase {
id: root
ColumnLayout {
id: contentColumn
anchors.fill: parent
spacing: app.margins
ExtendedVolumeController {
Layout.fillWidth: true
device: root.device
deviceClass: root.deviceClass
// visible: deviceClass.interfaces.indexOf("extendedvolumecontroller") >= 0
}
MediaControllerView {
Layout.fillWidth: true
device: root.device
deviceClass: root.deviceClass
visible: root.deviceClass.interfaces.indexOf("mediacontroller") >= 0
}
}
}