qmlmirror/QmlMirror.qml
Oscar Andreasson 0a1cf2ee74 Fixed install of qmldir
Proper title of page
2015-06-18 22:14:06 -07:00

35 lines
637 B
QML

import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Window 2.0
ApplicationWindow {
title: qsTr("MagicMirror")
width: 1080
height: 1920
color: "black"
Clock {
anchors.top: parent.top
anchors.left: parent.left
width: 360
height: 240
}
Weather {
id: weatherId
anchors.top: parent.top
anchors.right: parent.right
width: 360
height: 240
}
Transport {
id: transportId
anchors.top: weatherId.bottom
anchors.right: parent.right
width: 360
height: 480
color: "black"
}
}