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/ShutterDevicePage.qml
2018-06-26 04:14:19 +02:00

21 lines
375 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
ShutterControls {
anchors {
top: parent.top
topMargin: app.iconSize
horizontalCenter: parent.horizontalCenter
}
device: root.device
}
}