summaryrefslogtreecommitdiff
path: root/Home.qml
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2022-02-05 21:43:56 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2022-02-05 21:43:56 +0800
commitadb71170b308d7d9d3ef895b6cc7bbd9871381ac (patch)
tree08e327f119ea235a7b37c2ad0d333fe7f03368cd /Home.qml
parentfb221a9073bf4baa1048011bc6fb11aea7d24df6 (diff)
Stop using larva's home & task list formsHEADmaster
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 {}