summaryrefslogtreecommitdiff
path: root/qml/pages/UserDialog.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml/pages/UserDialog.qml')
-rw-r--r--qml/pages/UserDialog.qml25
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;
+ }
+ }
+}