mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-03 22:49:35 +03:00
15 lines
330 B
QML
15 lines
330 B
QML
|
import QtQuick 2.5
|
||
|
import QtQuick.Controls 1.4
|
||
|
import QtQuick.Layouts 1.1
|
||
|
import QtQuick.Controls.Styles 1.4
|
||
|
|
||
|
ProgressBar {
|
||
|
Layout.alignment: Qt.AlignLeft | Qt.AlignTop
|
||
|
Layout.maximumHeight: 10
|
||
|
Layout.minimumHeight: 10
|
||
|
Layout.minimumWidth: 300
|
||
|
Layout.fillWidth: true
|
||
|
maximumValue: 30
|
||
|
minimumValue: 0
|
||
|
}
|