summaryrefslogtreecommitdiff
path: root/Home.qml
diff options
context:
space:
mode:
Diffstat (limited to 'Home.qml')
-rw-r--r--Home.qml23
1 files changed, 9 insertions, 14 deletions
diff --git a/Home.qml b/Home.qml
index 5d08e3d..f441318 100644
--- a/Home.qml
+++ b/Home.qml
@@ -1,29 +1,24 @@
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
-import "larva/features"
-
-HomeForm {
- //menuButton.onClicked: drawer.open()
- //profileButton.onClicked: pageView.push("Profile.qml")
+Page {
StackLayout {
id: layout
anchors.fill: parent
Page {}
- TaskListForm {
- listView {
- model: ticketList
- delegate: TicketForm {
- title.text: subject
- delegate.onClicked: {
- window.ticketHistoryList(id,
- true)
- }
+ ListView {
+ model: ticketList
+ delegate: TicketForm {
+ width: layout.width
+ title.text: subject
+ delegate.onClicked: {
+ window.ticketHistoryList(id, true)
}
}
+ ScrollBar.vertical: ScrollBar {}
}
Page {}