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>
22 lines
414 B
QML
22 lines
414 B
QML
import QtQuick 2.9
|
|
import QtQuick.Controls 2.3
|
|
|
|
Button {
|
|
property string source
|
|
property string color
|
|
property int iconWidth
|
|
property int iconHeight
|
|
width: iconWidth
|
|
height: iconHeight
|
|
spacing: 0
|
|
rightPadding: 0
|
|
leftPadding: 0
|
|
padding: 0
|
|
icon.source: source
|
|
icon.color: color
|
|
icon.width: iconWidth
|
|
icon.height: iconHeight
|
|
flat: true
|
|
enabled: false
|
|
}
|