diff options
author | Arseniy Movshev <dodoradio@outlook.com> | 2023-02-02 22:07:54 +0000 |
---|---|---|
committer | Arseniy Movshev <dodoradio@outlook.com> | 2023-02-02 23:04:03 +0000 |
commit | 787fea2c897ced2bd396a1dbb22e70151782b7fa (patch) | |
tree | 78ce5513fe70360f38ca16b897f86a78f8a85ef4 | |
parent | 2678ad39c93d73d2685fb72ad65c7c89a3f96a33 (diff) |
Add the asteroid handwriting keyboard as a placeholder until we get a better one.
-rw-r--r-- | src/SetPointPage.qml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/SetPointPage.qml b/src/SetPointPage.qml index 2119ade..f8e3f26 100644 --- a/src/SetPointPage.qml +++ b/src/SetPointPage.qml @@ -44,6 +44,9 @@ Item { } } } + Asteroid.HandWritingKeyboard { + anchors.fill: parent + } property string selectedIcon: "ios-locate-outline" property string selectedColor property variant coord @@ -58,6 +61,7 @@ Item { id: contentColumn anchors.fill: parent Item { width: parent.width ; height: root.width*0.2 } + Asteroid.TextField { id: textBox width: parent.width @@ -65,6 +69,7 @@ Item { previewText: "Waypoint name" text: Qt.formatDateTime(new Date) } + Asteroid.Label { id: dateLabel width: parent.width |