mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
qml mockups usable with qmlscene, non functional but to be used purely for discussion about workflow
13 lines
189 B
QML
13 lines
189 B
QML
|
|
import QtQuick 2.1
|
|
|
|
Rectangle {
|
|
id: cardRoot
|
|
color: "red"
|
|
width: root.width
|
|
height: root.height
|
|
property int step: 0
|
|
property bool current: root.contentY == y
|
|
|
|
|
|
}
|