9 lines
508 B
QML
9 lines
508 B
QML
import QtQuick
|
|
|
|
BarPill {
|
|
minWidth: 140
|
|
Text { text: ""; color: Theme.aqua; font.pixelSize: Theme.fontSize; font.family: Theme.font }
|
|
Text { text: NetMonitor.rxStr; color: Theme.text; font.pixelSize: Theme.fontSize; font.family: Theme.font }
|
|
Text { text: ""; color: Theme.yellow; font.pixelSize: Theme.fontSize; font.family: Theme.font }
|
|
Text { text: NetMonitor.txStr; color: Theme.text; font.pixelSize: Theme.fontSize; font.family: Theme.font }
|
|
}
|