summaryrefslogtreecommitdiffstats
path: root/examples/applicationmanager/process-status/system-ui/MemoryText.qml
blob: 952b734888e74851bcaaf00615b98499293d1ac5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2021 The Qt Company Ltd.
// Copyright (C) 2019 Luxoft Sweden AB
// Copyright (C) 2018 Pelagicore AG
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QtQuick.Controls

Label {
    property var value
    property string name
    text: name + ": " + (value / 1e6).toFixed(0) + " MB"
    font.pixelSize: 15
}