mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-22 10:34:32 +00:00
fix: added missing exchange status icon assets
This commit is contained in:
parent
a73f5a1b3d
commit
575ec170f8
2 changed files with 15 additions and 0 deletions
|
@ -1994,6 +1994,9 @@ class ThemeAssets {
|
||||||
final String sendPending;
|
final String sendPending;
|
||||||
final String sendCancelled;
|
final String sendCancelled;
|
||||||
final String themePreview;
|
final String themePreview;
|
||||||
|
final String txExchange;
|
||||||
|
final String txExchangePending;
|
||||||
|
final String txExchangeFailed;
|
||||||
final String bitcoin;
|
final String bitcoin;
|
||||||
final String litecoin;
|
final String litecoin;
|
||||||
final String bitcoincash;
|
final String bitcoincash;
|
||||||
|
@ -2032,6 +2035,9 @@ class ThemeAssets {
|
||||||
required this.sendPending,
|
required this.sendPending,
|
||||||
required this.sendCancelled,
|
required this.sendCancelled,
|
||||||
required this.themePreview,
|
required this.themePreview,
|
||||||
|
required this.txExchange,
|
||||||
|
required this.txExchangePending,
|
||||||
|
required this.txExchangeFailed,
|
||||||
required this.bitcoin,
|
required this.bitcoin,
|
||||||
required this.litecoin,
|
required this.litecoin,
|
||||||
required this.bitcoincash,
|
required this.bitcoincash,
|
||||||
|
@ -2086,6 +2092,12 @@ class ThemeAssets {
|
||||||
"$applicationThemesDirectoryPath/$internalThemeUuid/${json["assets"]["send_cancelled"] as String}",
|
"$applicationThemesDirectoryPath/$internalThemeUuid/${json["assets"]["send_cancelled"] as String}",
|
||||||
themePreview:
|
themePreview:
|
||||||
"$applicationThemesDirectoryPath/$internalThemeUuid/${json["assets"]["theme_preview"] as String}",
|
"$applicationThemesDirectoryPath/$internalThemeUuid/${json["assets"]["theme_preview"] as String}",
|
||||||
|
txExchange:
|
||||||
|
"$applicationThemesDirectoryPath/$internalThemeUuid/${json["assets"]["txExchange"] as String}",
|
||||||
|
txExchangePending:
|
||||||
|
"$applicationThemesDirectoryPath/$internalThemeUuid/${json["assets"]["txExchangePending"] as String}",
|
||||||
|
txExchangeFailed:
|
||||||
|
"$applicationThemesDirectoryPath/$internalThemeUuid/${json["assets"]["txExchangeFailed"] as String}",
|
||||||
bitcoin:
|
bitcoin:
|
||||||
"$applicationThemesDirectoryPath/$internalThemeUuid/${json["assets"]["bitcoin"] as String}",
|
"$applicationThemesDirectoryPath/$internalThemeUuid/${json["assets"]["bitcoin"] as String}",
|
||||||
litecoin:
|
litecoin:
|
||||||
|
|
|
@ -215,5 +215,8 @@ final Map<String, dynamic> darkJson = {
|
||||||
"send_pending": "svg/tx-icon-send-pending.svg",
|
"send_pending": "svg/tx-icon-send-pending.svg",
|
||||||
"send_cancelled": "svg/tx-icon-send-failed.svg",
|
"send_cancelled": "svg/tx-icon-send-failed.svg",
|
||||||
"theme_preview": "svg/dark-theme.svg",
|
"theme_preview": "svg/dark-theme.svg",
|
||||||
|
"txExchange": "svg/tx-exchange-icon.svg",
|
||||||
|
"txExchangePending": "svg/tx-exchange-icon-pending.svg",
|
||||||
|
"txExchangeFailed": "svg/tx-exchange-icon-failed.svg",
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue