aboutsummaryrefslogtreecommitdiffstats
path: root/test_app.qml
blob: aace4e881f62d2c9befdaa2d3e72bba3c8b30697 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import QtQuick 2.0
import QtQuick.Controls 1.0;
import QtQuick.Layouts 1.0;
import Ethereum 1.0

ApplicationWindow {
    minimumWidth: 500
    maximumWidth: 500
    maximumHeight: 100
    minimumHeight: 100

    title: "Ethereum Dice"

    TextField {
        id: textField
        anchors.verticalCenter: parent.verticalCenter
        anchors.horizontalCenter: parent.horizontalCenter
        placeholderText: "Amount"
    }
    Label {
        id: txHash
        anchors.bottom: textField.top
        anchors.bottomMargin: 5
        anchors.horizontalCenter: parent.horizontalCenter
    }
    Button {
        anchors.top: textField.bottom
        anchors.horizontalCenter: parent.horizontalCenter
        anchors.topMargin: 5
        text: "Place bet"
        onClicked: {
            txHash.text = eth.createTx("e6716f9544a56c530d868e4bfbacb172315bdead", textField.text)
        }
    }
}