diff options
author | Marvin Borner | 2020-04-09 17:20:49 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-09 17:20:49 +0200 |
commit | 22bb752e6907e9d4c3f5159da01d8dfbdfd8b4bc (patch) | |
tree | a5651ab16b4762e6ab7b8c73d311787f3d8e54b0 /qml/pages/Board.qml | |
parent | ebb1ab3d05b1e61a491375b7640196e04f1bab06 (diff) |
Added piece layout
Diffstat (limited to 'qml/pages/Board.qml')
-rw-r--r-- | qml/pages/Board.qml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/qml/pages/Board.qml b/qml/pages/Board.qml index f04a0f1..efa79f7 100644 --- a/qml/pages/Board.qml +++ b/qml/pages/Board.qml @@ -6,6 +6,10 @@ Page { id: page allowedOrientations: Orientation.Portrait + Functions { + id: functions + } + SilicaFlickable { anchors.fill: parent contentHeight: column.height @@ -33,11 +37,10 @@ Page { id: repeater model: 64 delegate: Square { - width: page.width / 8 - color: ((index >> 3 ^ index) & 1) == 1 ? "#e8ebef" : "#7d8796" - + i: index } } + Component.onCompleted: functions.fill() } } } |