mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-05 03:04:03 +00:00
14c264e350
* fix(StatusQrCodeScanner): Improve QR code scanner - Almost async loading - Added camera selector - Added `captureRectangle` property - Add component info to sandbox qr code scanner page - Embed QrCodeScanner into desktop app * Compile and link qzxing as shared library * Hardcode settingCurrentNetwork. Propagate inputConnectionString errors. * Added qzxing libdir to e2e tests ld_library_path
17 lines
265 B
QML
17 lines
265 B
QML
import QtQuick 2.14
|
|
import StatusQ.Controls 0.1
|
|
|
|
import shared.controls 1.0
|
|
|
|
Column {
|
|
id: root
|
|
|
|
property alias input: codeInput
|
|
|
|
StatusSyncCodeInput {
|
|
id: codeInput
|
|
width: parent.width
|
|
mode: StatusSyncCodeInput.WriteMode
|
|
}
|
|
}
|