mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-13 15:17:45 +00:00
41 lines
646 B
QML
41 lines
646 B
QML
import QtQuick 2.14
|
|
import QtQuick.Controls 2.14
|
|
import QtQuick.Layouts 1.14
|
|
|
|
import Monitoring 1.0
|
|
|
|
|
|
Component {
|
|
ColumnLayout {
|
|
anchors.fill: parent
|
|
anchors.margins: 10
|
|
|
|
spacing: 15
|
|
|
|
Label {
|
|
Layout.fillWidth: true
|
|
|
|
text: "Context properties:"
|
|
font.bold: true
|
|
}
|
|
|
|
ListView {
|
|
id: lv
|
|
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
|
|
clip: true
|
|
|
|
|
|
model: Monitor.contexPropertiesNames
|
|
|
|
spacing: 5
|
|
|
|
delegate: Text {
|
|
text: modelData
|
|
}
|
|
}
|
|
}
|
|
}
|