2023-08-21 10:58:21 +00:00
|
|
|
import QtQuick 2.14
|
|
|
|
import QtQuick.Layouts 1.14
|
|
|
|
|
|
|
|
import shared.views 1.0
|
|
|
|
|
2023-08-23 07:09:16 +00:00
|
|
|
import "../stores"
|
|
|
|
|
2023-08-21 10:58:21 +00:00
|
|
|
Item {
|
|
|
|
id: root
|
|
|
|
|
2023-08-23 07:09:16 +00:00
|
|
|
property KeypairImportStore store
|
|
|
|
|
2023-08-21 10:58:21 +00:00
|
|
|
implicitHeight: layout.implicitHeight
|
|
|
|
|
|
|
|
SyncingCodeInstructions {
|
|
|
|
id: layout
|
|
|
|
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.margins: 24
|
|
|
|
|
2023-08-23 07:09:16 +00:00
|
|
|
purpose: SyncingCodeInstructions.Purpose.KeypairSync
|
|
|
|
type: root.store.syncViaQr?
|
|
|
|
SyncingCodeInstructions.Type.QRCode :
|
|
|
|
SyncingCodeInstructions.Type.EncryptedKey
|
2023-08-21 10:58:21 +00:00
|
|
|
}
|
|
|
|
}
|