1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
Rectangle {
color: "white"
border.width: model.isLoadingElement ? 0 : 1
border.color: "black"
implicitHeight: 50
RowLayout {
anchors.fill: parent
spacing: 5
BusyIndicator {
Layout.alignment: Qt.AlignHCenter
implicitHeight: 30
implicitWidth: implicitHeight
visible: model.isLoadingElement
}
Label {
font.pixelSize: 30
font.bold: true
text: model.number
visible: !model.isLoadingElement
}
ColumnLayout {
implicitHeight: 40
Layout.fillWidth: true
Layout.fillHeight: true
Layout.margins: 3
visible: !model.isLoadingElement
Label {
font.pixelSize: 16
text: model.title
}
Label {
font.pixelSize: 14
text: model.subtitle
}
}
}
}
|