70 lines
1.8 KiB
QML
70 lines
1.8 KiB
QML
import QtQuick 2.13
|
|
import QtQml 2.14
|
|
|
|
import StatusQ.Core 0.1
|
|
|
|
import utils 1.0
|
|
|
|
import shared 1.0
|
|
import shared.panels 1.0
|
|
|
|
Item {
|
|
id: assetDelegate
|
|
objectName: symbol
|
|
|
|
property string currency: ""
|
|
property string currencySymbol: ""
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.left: parent.left
|
|
visible: visibleForNetworkWithPositiveBalance
|
|
height: visible ? 40 + 2 * Style.current.padding : 0
|
|
|
|
Image {
|
|
id: assetInfoImage
|
|
width: 36
|
|
height: 36
|
|
source: symbol ? Style.png("tokens/" + symbol) : ""
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: 0
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
onStatusChanged: {
|
|
if (assetInfoImage.status == Image.Error) {
|
|
assetInfoImage.source = Style.png("tokens/DEFAULT-TOKEN@3x")
|
|
}
|
|
}
|
|
}
|
|
|
|
StyledText {
|
|
id: assetSymbol
|
|
anchors.left: assetInfoImage.right
|
|
anchors.leftMargin: Style.current.smallPadding
|
|
anchors.top: assetInfoImage.top
|
|
anchors.topMargin: 0
|
|
font.pixelSize: 15
|
|
text: name
|
|
}
|
|
|
|
StyledText {
|
|
id: assetFullTokenName
|
|
anchors.top: assetSymbol.bottom
|
|
anchors.left: assetInfoImage.right
|
|
anchors.leftMargin: Style.current.smallPadding
|
|
font.pixelSize: 15
|
|
color: Style.current.secondaryText
|
|
text: LocaleUtils.currencyAmountToLocaleString(enabledNetworkBalance)
|
|
}
|
|
|
|
StyledText {
|
|
id: assetBalance
|
|
anchors.top: assetInfoImage.top
|
|
anchors.topMargin: 0
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: 0
|
|
font.pixelSize: 15
|
|
font.strikeout: false
|
|
text: LocaleUtils.currencyAmountToLocaleString(enabledNetworkCurrencyBalance)
|
|
}
|
|
}
|