Everything run form inside a qrc file instead.
This commit is contained in:
parent
f5ac3d5ffd
commit
c665d93204
23 changed files with 196 additions and 32 deletions
|
@ -4,18 +4,34 @@ import QtQuick.Window 2.0
|
|||
|
||||
ApplicationWindow {
|
||||
title: qsTr("Hello World")
|
||||
width: 640
|
||||
height: 250
|
||||
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"
|
||||
border.color: "grey"
|
||||
border.width: 0
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue