mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 06:16:32 +00:00
3b60506460
- update the AssetsView.qml view and delegates according to the latest design - add AssetsView to Storybook - add new section for Community Assets - (re)use the community badge with tooltip and link action to take the user to the respective community - add Community Assets info icon + popup - create context menu for token delegates with actions (Send/Receive/Manage tokens/Hide) - add confirmation popups when hiding a single or all community tokens - emit a toast bubble after hiding the token(s) - plus related controller/backend methods for handling the settings-related actions - some smaller fixes/cleanups Fixes #12369 Fixes #12372
28 lines
631 B
QML
28 lines
631 B
QML
import QtQuick 2.15
|
|
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
import utils 1.0
|
|
|
|
TokenDelegate {
|
|
id: root
|
|
|
|
title: Constants.dummyText
|
|
subTitle: Constants.dummyText
|
|
asset.name: Constants.dummyText
|
|
|
|
currencyBalance.text: Constants.dummyText
|
|
currencyBalance.loading: true
|
|
change24HourPercentage.text: Constants.dummyText
|
|
change24HourPercentage.loading: true
|
|
currencyPrice.text: Constants.dummyText
|
|
currencyPrice.loading: true
|
|
|
|
statusListItemSubTitle.loading: true
|
|
statusListItemTitle.loading: true
|
|
statusListItemIcon.loading: true
|
|
|
|
textColor: Theme.palette.baseColor1
|
|
enabled: false
|
|
}
|