Browse Source

qml: ui swapdialog

master
Sander van Grieken 3 years ago
parent
commit
daffa1a731
  1. 38
      electrum/gui/qml/components/SwapDialog.qml

38
electrum/gui/qml/components/SwapDialog.qml

@ -22,18 +22,19 @@ ElDialog {
color: "#aa000000"
}
GridLayout {
id: layout
padding: 0
ColumnLayout {
width: parent.width
height: parent.height
columns: 2
spacing: 0
Rectangle {
height: 1
Layout.fillWidth: true
Layout.columnSpan: 2
color: Material.accentColor
}
GridLayout {
id: layout
columns: 2
Layout.preferredWidth: parent.width
Layout.leftMargin: constants.paddingLarge
Layout.rightMargin: constants.paddingLarge
Label {
text: qsTr('You send')
@ -143,26 +144,23 @@ ElDialog {
InfoTextArea {
Layout.columnSpan: 2
Layout.preferredWidth: swapslider.width
Layout.alignment: Qt.AlignHCenter
visible: swaphelper.userinfo != ''
text: swaphelper.userinfo
}
Rectangle {
height: 1
Layout.fillWidth: true
Layout.columnSpan: 2
color: Material.accentColor
}
Button {
Layout.alignment: Qt.AlignHCenter
Item { Layout.fillHeight: true; Layout.preferredWidth: 1 }
FlatButton {
Layout.columnSpan: 2
text: qsTr('Ok')
Layout.fillWidth: true
text: qsTr('Swap')
icon.source: '../../icons/status_waiting.png'
enabled: swaphelper.valid
onClicked: swaphelper.executeSwap()
}
Item { Layout.fillHeight: true; Layout.preferredWidth: 1; Layout.columnSpan: 2 }
}
SwapHelper {

Loading…
Cancel
Save