mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 17:57:40 +00:00
fix: assets display
This commit is contained in:
parent
b7bb62653e
commit
5acf74e260
2 changed files with 3 additions and 3 deletions
|
@ -63,8 +63,8 @@ class DesktopBuyIcon extends ConsumerWidget {
|
|||
|
||||
@override
|
||||
Widget build(BuildContext context, WidgetRef ref) {
|
||||
return SvgPicture.asset(
|
||||
ref.watch(themeProvider.select((value) => value.assets.buy)),
|
||||
return SvgPicture.file(
|
||||
File(ref.watch(themeAssetsProvider).buy),
|
||||
width: 20,
|
||||
height: 20,
|
||||
color: DesktopMenuItemId.buy ==
|
||||
|
|
|
@ -193,7 +193,7 @@ class _SVG {
|
|||
String get exchange3 => "assets/svg/exchange-3.svg";
|
||||
String get messageQuestion => "assets/svg/message-question-1.svg";
|
||||
String get list => "assets/svg/list-ul.svg";
|
||||
String get unclaimedPaynym => "assets/svg/unclaimed.png";
|
||||
String get unclaimedPaynym => "assets/svg/unclaimed.svg";
|
||||
|
||||
String get trocadorRatingA => "assets/svg/trocador_rating_a.svg";
|
||||
String get trocadorRatingB => "assets/svg/trocador_rating_b.svg";
|
||||
|
|
Loading…
Reference in a new issue