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

21 lines
304 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"
2014-08-07 19:52:22 +00:00
opacity: .5
2014-08-06 11:58:32 +00:00
height: 100
width: parent.width
y: parent.height / 2 - height / 2
x: 0
}
}