|
@ -6,6 +6,7 @@ import QtQuick.Controls.Material 2.0 |
|
|
Frame { |
|
|
Frame { |
|
|
id: root |
|
|
id: root |
|
|
height: layout.height |
|
|
height: layout.height |
|
|
|
|
|
font.pixelSize: constants.fontSizeMedium |
|
|
|
|
|
|
|
|
property string formattedBalance |
|
|
property string formattedBalance |
|
|
property string formattedUnconfirmed |
|
|
property string formattedUnconfirmed |
|
@ -29,20 +30,16 @@ Frame { |
|
|
text: formattedBalance |
|
|
text: formattedBalance |
|
|
} |
|
|
} |
|
|
Label { |
|
|
Label { |
|
|
font.pixelSize: constants.fontSizeMedium |
|
|
|
|
|
text: qsTr('Confirmed: ') |
|
|
text: qsTr('Confirmed: ') |
|
|
} |
|
|
} |
|
|
Label { |
|
|
Label { |
|
|
font.pixelSize: constants.fontSizeMedium |
|
|
|
|
|
color: Material.accentColor |
|
|
color: Material.accentColor |
|
|
text: formattedBalance |
|
|
text: formattedBalance |
|
|
} |
|
|
} |
|
|
Label { |
|
|
Label { |
|
|
font.pixelSize: constants.fontSizeMedium |
|
|
|
|
|
text: qsTr('Unconfirmed: ') |
|
|
text: qsTr('Unconfirmed: ') |
|
|
} |
|
|
} |
|
|
Label { |
|
|
Label { |
|
|
font.pixelSize: constants.fontSizeMedium |
|
|
|
|
|
color: Material.accentColor |
|
|
color: Material.accentColor |
|
|
text: formattedUnconfirmed |
|
|
text: formattedUnconfirmed |
|
|
} |
|
|
} |
|
|