moment/src/qml/Base/HProgressBar.qml
2019-08-28 14:28:20 -04:00

24 lines
542 B
QML

import QtQuick 2.12
import QtQuick.Controls 2.12
ProgressBar {
id: bar
background: Rectangle {
implicitWidth: 200
implicitHeight: theme.controls.progressBar.height
color: theme.controls.progressBar.background
}
contentItem: Item {
implicitWidth: 200
implicitHeight: theme.controls.progressBar.height
Rectangle {
width: bar.visualPosition * parent.width
height: parent.height
color: theme.controls.progressBar.foreground
}
}
}