summaryrefslogtreecommitdiff
path: root/qml/pages/Board.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml/pages/Board.qml')
-rw-r--r--qml/pages/Board.qml9
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()
}
}
}