mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-14 00:27:40 +00:00
bf6758b68e
- this needs proper bg color (transparent) and a `border.width: 0` to work properly with the Fixes #10754
13 lines
389 B
QML
13 lines
389 B
QML
import QtQuick 2.15
|
|
|
|
import StatusQ.Core 0.1
|
|
|
|
import utils 1.0
|
|
|
|
ShowcaseDelegate {
|
|
title: !!showcaseObj && !!showcaseObj.name ? showcaseObj.name : ""
|
|
secondaryTitle: !!showcaseObj ? LocaleUtils.currencyAmountToLocaleString(showcaseObj.enabledNetworkBalance) : Qt.locale().zeroDigit
|
|
hasImage: true
|
|
icon.source: !!showcaseObj ? Constants.tokenIcon(showcaseObj.symbol) : ""
|
|
}
|