summaryrefslogtreecommitdiff
path: root/qml/pages
diff options
context:
space:
mode:
authorMarvin Borner2020-04-10 23:58:11 +0200
committerMarvin Borner2020-04-10 23:58:11 +0200
commitf4b275b744c22953c0c5dab1573df1bae4f11927 (patch)
tree48dd1403d81aa8509ff58d0da38ec2ac5a8fe8be /qml/pages
parent84637c0ad061d7c69420dca5a97708b4b1d494e6 (diff)
Added turn reminder
Diffstat (limited to 'qml/pages')
-rw-r--r--qml/pages/Board.qml10
1 files changed, 8 insertions, 2 deletions
diff --git a/qml/pages/Board.qml b/qml/pages/Board.qml
index bbf41c3..68dc56d 100644
--- a/qml/pages/Board.qml
+++ b/qml/pages/Board.qml
@@ -76,11 +76,17 @@ Page {
}
}
Component.onCompleted: {
- // functions.fill();
functions.event_stream();
- // functions.challenge("GodelEscherBot");
}
}
+
+ Label {
+ // id: turn_label
+ anchors.horizontalCenter: parent.horizontalCenter
+ anchors.top: grid.bottom
+ topPadding: Theme.paddingMedium
+ text: functions.turn ? qsTr("Your turn") : qsTr("Opponents turn");
+ }
}
}