Browse Source
adds buildozer 'pillow' recipe to requirements add initial PoC on qml receive tabmaster
5 changed files with 82 additions and 19 deletions
@ -0,0 +1,32 @@ |
|||||||
|
import QtQuick 2.6 |
||||||
|
import QtQuick.Layouts 1.0 |
||||||
|
import QtQuick.Controls 2.0 |
||||||
|
import QtQuick.Controls.Material 2.0 |
||||||
|
|
||||||
|
import org.electrum 1.0 |
||||||
|
|
||||||
|
Pane { |
||||||
|
id: rootItem |
||||||
|
visible: Daemon.currentWallet !== undefined |
||||||
|
|
||||||
|
ColumnLayout { |
||||||
|
width: parent.width |
||||||
|
spacing: 20 |
||||||
|
|
||||||
|
Image { |
||||||
|
id: img |
||||||
|
} |
||||||
|
|
||||||
|
TextField { |
||||||
|
id: text |
||||||
|
} |
||||||
|
|
||||||
|
Button { |
||||||
|
text: 'generate' |
||||||
|
onClicked: { |
||||||
|
img.source = 'image://qrgen/' + text.text |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
Loading…
Reference in new issue