mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-12 07:14:37 +00:00
70343c4b4f
Point 5 of #11968
27 lines
526 B
QML
27 lines
526 B
QML
import QtQuick 2.14
|
|
import QtQuick.Layouts 1.14
|
|
|
|
import shared.views 1.0
|
|
|
|
import "../stores"
|
|
|
|
Item {
|
|
id: root
|
|
|
|
property KeypairImportStore store
|
|
|
|
implicitHeight: layout.implicitHeight
|
|
|
|
SyncingCodeInstructions {
|
|
id: layout
|
|
|
|
anchors.fill: parent
|
|
anchors.margins: 24
|
|
|
|
purpose: SyncingCodeInstructions.Purpose.KeypairSync
|
|
type: root.store.syncViaQr?
|
|
SyncingCodeInstructions.Type.QRCode :
|
|
SyncingCodeInstructions.Type.EncryptedKey
|
|
}
|
|
}
|