shift-shell/look-and-feel/lockscreen/LockScreen.qml
2014-08-06 13:58:32 +02:00

19 lines
284 B
QML

import QtQuick 2.0
Item {
id: lockscreen
Leaves {
id: background
anchors.fill: parent
}
Rectangle {
id: test
color: "red"
height: 100
width: parent.width
y: parent.height / 2 - height / 2
x: 0
}
}