aboutsummaryrefslogtreecommitdiffstats
path: root/DemoApplication/pages/Page4.qml
blob: e111745461daa821b60fcdd6a95e5aa1f6a02453 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import QtQuick 2.0
import CursorNavigation 1.0
import QtQuick.Layouts 1.3
import "../controls"

Item {

    GridLayout {
        columns: 4
        rows: 4

        anchors.fill: parent
        anchors.centerIn: parent

        Repeater {
            CNFlipButton {
                Layout.minimumWidth: 110
                Layout.minimumHeight: 110
                text: "Button " + index

                Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter
            }

            model: 16
        }

    }

}