summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2019-10-03 15:47:51 +0700
committerAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2019-10-03 15:47:51 +0700
commita98f8eba7ef3139899967c4d2a0afe5d42ffd2bc (patch)
treee940a0d13ac280549cdaf96434e30e2fe759408f
parente5dc68c840279707e4fb53b704d5674f774df15d (diff)
changed `StackView` to `ScrollView`
-rw-r--r--features/TaskDetailForm.ui.qml18
1 files changed, 7 insertions, 11 deletions
diff --git a/features/TaskDetailForm.ui.qml b/features/TaskDetailForm.ui.qml
index bff578d..175432a 100644
--- a/features/TaskDetailForm.ui.qml
+++ b/features/TaskDetailForm.ui.qml
@@ -34,7 +34,7 @@ Page {
}
}
}
- StackView {
+ ScrollView {
id: contentView
anchors.fill: parent
background: Rectangle {
@@ -72,22 +72,18 @@ Page {
}
ListView {
id: listView
+ anchors.right: parent.right
+ anchors.rightMargin: 0
+ anchors.left: parent.left
+ anchors.leftMargin: 0
+ anchors.top: separator.bottom
+ anchors.topMargin: 0
Rectangle {
color: "#eeeeee"
z: -1
anchors.fill: parent
}
- anchors.bottom: parent.bottom
- anchors.bottomMargin: 0
- anchors.top: separator.bottom
- anchors.topMargin: 0
- anchors.right: parent.right
- anchors.rightMargin: 0
- anchors.left: parent.left
- anchors.leftMargin: 0
spacing: 0
-
- ScrollBar.vertical: ScrollBar {}
}
}
}