mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
19 lines
284 B
QML
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
|
|
}
|
|
}
|