summaryrefslogtreecommitdiffstats
path: root/basicsuite/Sensors/main.qml
blob: 2e1b820d271d062f47c303904f60dec934f365b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import QtQuick 2.0
import QtSensors 5.0

Item {
    id: root
    width: 800
    height: 1280
    Rectangle {
        id: main
        width: root.height
        height: root.width
        anchors.centerIn: parent
        rotation: 90
        border.width: 1

        Light {
            id: lys
            width: main.width
            height: main.height / 2
        }

        Accelbubble {
            width: main.width
            height: main.height / 2
            anchors.top: lys.bottom
        }
    }
}