summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2022-02-02 21:57:57 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2022-02-02 21:57:57 +0800
commit6e4b396a3f81e798cd30a023fa471473fd1151eb (patch)
tree0eaffc86e07bbc7ed08d948d66b5043807f58946
parent46d669bc505b88e51c9905883a04c931e9f80329 (diff)
Update import versions & reindent
-rw-r--r--features/TaskDetailForm.ui.qml184
1 files changed, 88 insertions, 96 deletions
diff --git a/features/TaskDetailForm.ui.qml b/features/TaskDetailForm.ui.qml
index 429a99d..72e69fa 100644
--- a/features/TaskDetailForm.ui.qml
+++ b/features/TaskDetailForm.ui.qml
@@ -1,101 +1,93 @@
-import QtQuick 2.12
-import QtQuick.Controls 2.12
-import QtQuick.Controls.Material 2.12
-import QtQuick.Layouts 1.12
+import QtQuick 2.15
+import QtQuick.Controls 2.15
+import QtQuick.Layouts 1.15
Page {
- id: page
- title: qsTr("Task detail page")
- background: Rectangle {
- color: "#FFFFFF"
- }
+ id: page
+ title: qsTr("Task detail page")
+ background: Rectangle {
+ color: "#FFFFFF"
+ }
- property alias backButton: backButton
- property alias ticketBriefForm: ticketBriefForm
- property alias listView: listView
+ property alias backButton: backButton
+ property alias ticketBriefForm: ticketBriefForm
+ property alias listView: listView
- header: ToolBar {
- background: Rectangle {
- color: "#FAFFFFFF"
- }
- RowLayout {
- id: toolBar
- anchors.fill: parent
- spacing: 8
- ToolButton {
- id: backButton
- icon.name: "back-button"
- icon.source: "/components/icons/arrow-back-24px.svg"
- highlighted: true
- }
- ToolButton {
- id: toolMoreButton
- icon.name: "more-button"
- icon.source: "/components/icons/more-vert-24px.svg"
- highlighted: true
- Layout.alignment: Qt.AlignRight | Qt.AlignVCenter
- }
- }
- }
- ScrollView {
- id: contentView
- clip: true
- contentHeight: ticketBriefForm.height + separator.height + listView.height
- anchors.bottom: parent.bottom
- anchors.bottomMargin: 0
- anchors.right: parent.right
- anchors.rightMargin: 0
- anchors.left: parent.left
- anchors.leftMargin: 0
- anchors.top: parent.top
- anchors.topMargin: 0
- TaskBriefForm {
- id: ticketBriefForm
- anchors.top: parent.top
- anchors.topMargin: 0
- anchors.right: parent.right
- anchors.rightMargin: 0
- anchors.left: parent.left
- anchors.leftMargin: 0
- }
- RowLayout {
- id: separator
- height: separatorLabel.height + 32
- anchors.top: ticketBriefForm.bottom
- anchors.topMargin: 0
- anchors.right: parent.right
- anchors.rightMargin: 0
- anchors.left: parent.left
- anchors.leftMargin: 0
- Label {
- id: separatorLabel
- height: 20
- color: "#000000"
- text: qsTr("Activities")
- Layout.leftMargin: 16
- verticalAlignment: Text.AlignVCenter
- font.weight: Font.Medium
- font.pixelSize: 16
- font.family: "Work Sans"
- }
- }
- ListView {
- id: listView
- keyNavigationWraps: true
- interactive: false
- anchors.right: parent.right
- anchors.rightMargin: 0
- anchors.left: parent.left
- anchors.leftMargin: 0
- anchors.top: separator.bottom
- anchors.topMargin: 0
- }
- }
+ header: ToolBar {
+ background: Rectangle {
+ color: "#FAFFFFFF"
+ }
+ RowLayout {
+ id: toolBar
+ anchors.fill: parent
+ spacing: 8
+ ToolButton {
+ id: backButton
+ icon.name: "back-button"
+ icon.source: "/components/icons/arrow-back-24px.svg"
+ highlighted: true
+ }
+ ToolButton {
+ id: toolMoreButton
+ icon.name: "more-button"
+ icon.source: "/components/icons/more-vert-24px.svg"
+ highlighted: true
+ Layout.alignment: Qt.AlignRight | Qt.AlignVCenter
+ }
+ }
+ }
+ ScrollView {
+ id: contentView
+ clip: true
+ contentHeight: ticketBriefForm.height + separator.height + listView.height
+ anchors.bottom: parent.bottom
+ anchors.bottomMargin: 0
+ anchors.right: parent.right
+ anchors.rightMargin: 0
+ anchors.left: parent.left
+ anchors.leftMargin: 0
+ anchors.top: parent.top
+ anchors.topMargin: 0
+ TaskBriefForm {
+ id: ticketBriefForm
+ anchors.top: parent.top
+ anchors.topMargin: 0
+ anchors.right: parent.right
+ anchors.rightMargin: 0
+ anchors.left: parent.left
+ anchors.leftMargin: 0
+ }
+ RowLayout {
+ id: separator
+ height: separatorLabel.height + 32
+ anchors.top: ticketBriefForm.bottom
+ anchors.topMargin: 0
+ anchors.right: parent.right
+ anchors.rightMargin: 0
+ anchors.left: parent.left
+ anchors.leftMargin: 0
+ Label {
+ id: separatorLabel
+ height: 20
+ color: "#000000"
+ text: qsTr("Activities")
+ Layout.leftMargin: 16
+ verticalAlignment: Text.AlignVCenter
+ font.weight: Font.Medium
+ font.pixelSize: 16
+ font.family: "Work Sans"
+ }
+ }
+ ListView {
+ id: listView
+ keyNavigationWraps: true
+ interactive: false
+ anchors.right: parent.right
+ anchors.rightMargin: 0
+ anchors.left: parent.left
+ anchors.leftMargin: 0
+ anchors.top: separator.bottom
+ anchors.topMargin: 0
+ }
+ }
}
-
-/*##^##
-Designer {
- D{i:0;autoSize:true;height:480;width:640}
-}
-##^##*/
-