mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 01:37:54 +00:00
fix: desktop address book card coin icon
This commit is contained in:
parent
86630f2e85
commit
aba9aeaef2
1 changed files with 6 additions and 2 deletions
|
@ -8,6 +8,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
import 'dart:io';
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter/services.dart';
|
||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||
|
@ -43,8 +45,10 @@ class DesktopAddressCard extends ConsumerWidget {
|
|||
return Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
SvgPicture.asset(
|
||||
ref.watch(coinIconProvider(entry.coin)),
|
||||
SvgPicture.file(
|
||||
File(
|
||||
ref.watch(coinIconProvider(entry.coin)),
|
||||
),
|
||||
height: 32,
|
||||
width: 32,
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue