shift-shell/look-and-feel/contents/lockscreen/LockScreen.qml

20 lines
284 B
QML
Raw Normal View History

2014-08-06 11:58:32 +00:00
import QtQuick 2.0
Item {
id: lockscreen
2014-08-06 11:58:32 +00:00
Leaves {
id: background
anchors.fill: parent
}
Rectangle {
id: test
2014-08-06 11:58:32 +00:00
color: "red"
height: 100
width: parent.width
y: parent.height / 2 - height / 2
x: 0
}
}