diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-02-05 21:43:56 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-02-05 21:43:56 +0800 |
commit | adb71170b308d7d9d3ef895b6cc7bbd9871381ac (patch) | |
tree | 08e327f119ea235a7b37c2ad0d333fe7f03368cd /Home.qml | |
parent | fb221a9073bf4baa1048011bc6fb11aea7d24df6 (diff) |
Diffstat (limited to 'Home.qml')
-rw-r--r-- | Home.qml | 23 |
1 files changed, 9 insertions, 14 deletions
@@ -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 {} |