mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-30 09:47:43 +03:00
16 lines
348 B
QML
16 lines
348 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
|
|
rotation: 180
|
|
}
|