diff options
author | Marvin Borner | 2020-04-10 23:58:11 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-10 23:58:11 +0200 |
commit | f4b275b744c22953c0c5dab1573df1bae4f11927 (patch) | |
tree | 48dd1403d81aa8509ff58d0da38ec2ac5a8fe8be /qml/pages/Board.qml | |
parent | 84637c0ad061d7c69420dca5a97708b4b1d494e6 (diff) |
Added turn reminder
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"); + } } } |