2021-05-05 07:37:01 +00:00
|
|
|
import QtQuick 2.14
|
|
|
|
import QtQuick.Layouts 1.14
|
|
|
|
import StatusQ.Core 0.1
|
|
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
import StatusQ.Components 0.1
|
|
|
|
|
2022-04-07 19:14:56 +00:00
|
|
|
ColumnLayout {
|
|
|
|
GridLayout {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
2021-05-05 07:37:01 +00:00
|
|
|
|
2022-04-07 19:14:56 +00:00
|
|
|
columns: 6
|
|
|
|
columnSpacing: 5
|
|
|
|
rowSpacing: 5
|
2021-05-05 10:16:49 +00:00
|
|
|
|
2022-04-07 19:14:56 +00:00
|
|
|
StatusLoadingIndicator {
|
|
|
|
color: Theme.palette.directColor4
|
|
|
|
}
|
2021-05-06 07:52:47 +00:00
|
|
|
|
2022-04-07 19:14:56 +00:00
|
|
|
StatusLetterIdenticon {
|
|
|
|
name: "#status"
|
|
|
|
}
|
2021-05-06 08:34:37 +00:00
|
|
|
|
2022-04-07 19:14:56 +00:00
|
|
|
StatusRoundedImage {
|
2022-07-22 13:42:05 +00:00
|
|
|
image.source: "qrc:/demoapp/data/profile-image-1.jpeg"
|
2022-04-07 19:14:56 +00:00
|
|
|
}
|
2021-05-06 08:34:37 +00:00
|
|
|
|
2022-04-07 19:14:56 +00:00
|
|
|
StatusBadge {}
|
2021-05-06 08:34:37 +00:00
|
|
|
|
2022-04-07 19:14:56 +00:00
|
|
|
StatusBadge {
|
|
|
|
value: 1
|
|
|
|
}
|
|
|
|
|
|
|
|
StatusBadge {
|
|
|
|
value: 10
|
|
|
|
}
|
2021-05-06 08:34:37 +00:00
|
|
|
|
2022-04-07 19:14:56 +00:00
|
|
|
StatusBadge {
|
|
|
|
value: 100
|
|
|
|
}
|
|
|
|
|
|
|
|
StatusRoundIcon {
|
2022-09-02 15:40:30 +00:00
|
|
|
asset.name: "info"
|
2022-04-07 19:14:56 +00:00
|
|
|
}
|
2021-05-06 08:34:37 +00:00
|
|
|
}
|
2021-05-21 12:32:23 +00:00
|
|
|
|
2022-04-07 19:14:56 +00:00
|
|
|
Flow {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
spacing: 4
|
|
|
|
|
|
|
|
Repeater {
|
|
|
|
model: 12
|
|
|
|
StatusLetterIdenticon {
|
|
|
|
name: "A"
|
|
|
|
color: Theme.palette.userCustomizationColors[index]
|
|
|
|
letterSize: 16
|
|
|
|
}
|
|
|
|
}
|
2021-05-21 12:32:23 +00:00
|
|
|
}
|
2022-04-07 19:14:56 +00:00
|
|
|
|
2022-08-08 02:13:13 +00:00
|
|
|
StatusDatePicker {
|
|
|
|
label: "Select date"
|
|
|
|
}
|
|
|
|
}
|