summaryrefslogtreecommitdiff
path: root/qml/widgetview.qml
blob: 077431d7c80caa7d3657119622ddfb9265f4f5d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0

Rectangle {
    width: 96*4
    height: 96

    color: Qt.rgba(0, 0, 0, 1);

    Repeater {
        model: 16
        Loader {

        }
    }
}