diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-10-02 20:47:02 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-10-02 20:47:02 +0700 |
commit | a1b2de256b4d9938c69f28302879e07d66a5430d (patch) | |
tree | 95358e58aa6c8d184fcc9e007e10482e3294c755 | |
parent | 51d7238597fb8fd754c36249261db4a36c8bf1a0 (diff) |
add listview
-rw-r--r-- | features/TaskDetailForm.ui.qml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/features/TaskDetailForm.ui.qml b/features/TaskDetailForm.ui.qml index f8da9d1..dc01776 100644 --- a/features/TaskDetailForm.ui.qml +++ b/features/TaskDetailForm.ui.qml @@ -32,6 +32,19 @@ Page { } } } + ListView { + id: listView + width: parent.width + height: parent.height + anchors.topMargin: 8 + anchors.right: parent.right + anchors.rightMargin: 0 + anchors.left: parent.left + anchors.leftMargin: 0 + spacing: 8 + + ScrollBar.vertical: ScrollBar {} + } } /*##^## |