shift-shell/prototypes/singlescrolling/Card.qml
Marco Martin e0b9dc2142 a couple of prototypes for the homescreen
qml mockups usable with qmlscene, non functional
but to be used purely for discussion about workflow
2015-02-19 17:24:49 +01:00

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
}