diff options
Diffstat (limited to 'qml/pages/Board.qml')
-rw-r--r-- | qml/pages/Board.qml | 10 |
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"); + } } } |