Skip to content

Commit

Permalink
leaving OG design just changing the max lines
Browse files Browse the repository at this point in the history
  • Loading branch information
n13 committed Jul 28, 2024
1 parent a445557 commit 3d9776f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/ui/wallet/components/wallet_token_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ class WalletTokenWidget extends StatelessWidget {
Widget build(BuildContext context) {
return GestureDetector(
onTap: onTap,
child: SizedBox(
height: 119.0,
width: 118.0,
child: Container(
height: 150,
width: 150,
child: HyphaCard(
child: Padding(
padding: const EdgeInsets.all(16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
HyphaAvatarImage(imageRadius: 18, imageFromUrl: token.image, name: token.name),
const Spacer(),
const SizedBox(height: 32),
Text(
token.userOwnedAmount?.toString() ?? 'n/a',
style: context.hyphaTextTheme.regular,
Expand Down

0 comments on commit 3d9776f

Please sign in to comment.