From bdbe3a0c074c3a1b81786ffb9f7cc1b41fc0b0dd Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 12 Apr 2020 14:50:42 +0200 Subject: Added resign, draw and abort logic and chat --- qml/pages/UserDialog.qml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 qml/pages/UserDialog.qml (limited to 'qml/pages/UserDialog.qml') diff --git a/qml/pages/UserDialog.qml b/qml/pages/UserDialog.qml new file mode 100644 index 0000000..3471819 --- /dev/null +++ b/qml/pages/UserDialog.qml @@ -0,0 +1,25 @@ +import QtQuick 2.2 +import Sailfish.Silica 1.0 + +Dialog { + property var name + + Column { + width: parent.width + + DialogHeader { } + + TextField { + id: username + width: parent.width + placeholderText: qsTr("e.g. LeelaChess") + label: qsTr("Username") + } + } + + onDone: { + if (result == DialogResult.Accepted) { + name = username.text; + } + } +} -- cgit v1.2.3