mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-01 02:02:33 +03:00
11 lines
149 B
QML
11 lines
149 B
QML
import QtQuick 2.5
|
|
|
|
TextEdit {
|
|
visible: false
|
|
function setClipboard(value) {
|
|
text = value
|
|
selectAll()
|
|
copy()
|
|
}
|
|
}
|