mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-26 10:33:15 +03:00
94edf799b6
- New design based on Material Style - Light mode and Dark mode - Add support for custom CCID readers - New tray functionality - Support for favorite credentials Co-authored-by: Rikard <rikard@yubico.com>
24 lines
483 B
QML
24 lines
483 B
QML
import QtQuick 2.9
|
|
import QtQuick.Controls 2.2
|
|
import QtQuick.Layouts 1.3
|
|
import QtQuick.Controls.Material 2.2
|
|
import QtGraphicalEffects 1.0
|
|
|
|
Pane {
|
|
id: pane
|
|
|
|
readonly property int dynamicWidth: 600
|
|
readonly property int dynamicMargin: 32
|
|
|
|
spacing: 8
|
|
padding: 32
|
|
|
|
objectName: 'loadingView'
|
|
contentWidth: app.width
|
|
|
|
BusyIndicator {
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
}
|
|
}
|