diff options
| author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-29 20:04:32 +0700 |
|---|---|---|
| committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-29 20:04:32 +0700 |
| commit | 27b2be77d5d7c53a23bfbec57807b2669dc1c163 (patch) | |
| tree | 694703910379cf4cab2335884619beeeb1edf50f /features/TaskHistoryForm.ui.qml | |
| parent | ce208d00add8665d99d01038467c473db00b1931 (diff) | |
load `TaskHistoryForm.ui.qml` on `TaskDetailForm`
Diffstat (limited to 'features/TaskHistoryForm.ui.qml')
| -rw-r--r-- | features/TaskHistoryForm.ui.qml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/features/TaskHistoryForm.ui.qml b/features/TaskHistoryForm.ui.qml new file mode 100644 index 0000000..00b0d82 --- /dev/null +++ b/features/TaskHistoryForm.ui.qml @@ -0,0 +1,40 @@ +import QtQuick 2.12 +import QtQuick.Controls 2.12 +import QtQuick.Controls.Material 2.12 +import QtQuick.Layouts 1.12 + +Page { + id: page + height: ticketHistoryText.height + 16 + background: Rectangle { + color: "#eeeeee" + } + RowLayout { + anchors.fill: parent + spacing: 8 + Text { + id: historyCreator + text: qsTr("Username") + font.weight: Font.Medium + font.pixelSize: 14 + font.family: "Work Sans" + Layout.leftMargin: 16 + width: historyCreator.width + } + Text { + id: ticketHistoryText + text: qsTr("Edit or Commented") + font.pixelSize: 14 + font.family: "Work Sans" + width: ticketHistoryText.width + } + Text { + id: historyTimestamp + text: qsTr("2017-07-25 15:05:30") + Layout.rightMargin: 16 + font.pixelSize: 14 + font.family: "Work Sans" + width: historyTimestamp.width + } + } +} |