diff options
author | Marvin Borner | 2020-04-12 14:50:42 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-12 14:50:42 +0200 |
commit | bdbe3a0c074c3a1b81786ffb9f7cc1b41fc0b0dd (patch) | |
tree | d2147ce6f92dadd8cac22ab619438b5b4e7cddb6 /qml/pages/UserDialog.qml | |
parent | 0cc8b365bfdf030820cdbaad87709a38e591b0b2 (diff) |
Added resign, draw and abort logic and chat
Diffstat (limited to 'qml/pages/UserDialog.qml')
-rw-r--r-- | qml/pages/UserDialog.qml | 25 |
1 files changed, 25 insertions, 0 deletions
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; + } + } +} |