Skip to content

Commit d59caeb

Browse files
author
Sterling Long
committed
Undid centering
1 parent 670e2fe commit d59caeb

1 file changed

Lines changed: 11 additions & 13 deletions

File tree

lib/widgets/grid_list/grid_list_wallet_item.dart

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class GridListWalletItem extends StatelessWidget {
2020
WalletConnectModalTheme.getData(context);
2121

2222
return Column(
23-
// crossAxisAlignment: CrossAxisAlignment.center,
23+
// mainAxisAlignment: MainAxisAlignment.spaceAround,
2424
children: <Widget>[
2525
Container(
2626
width: imageSize,
@@ -52,19 +52,17 @@ class GridListWalletItem extends StatelessWidget {
5252
color: themeData.foreground100,
5353
),
5454
),
55-
if (listItem.description != null) ...[
56-
const SizedBox(height: 2.0),
57-
Text(
58-
listItem.description ?? '',
59-
textAlign: TextAlign.center,
60-
maxLines: 1,
61-
overflow: TextOverflow.clip,
62-
style: TextStyle(
63-
fontSize: 12.0,
64-
color: themeData.foreground300,
65-
),
55+
const SizedBox(height: 2.0),
56+
Text(
57+
listItem.description ?? '',
58+
textAlign: TextAlign.center,
59+
maxLines: 1,
60+
overflow: TextOverflow.clip,
61+
style: TextStyle(
62+
fontSize: 12.0,
63+
color: themeData.foreground300,
6664
),
67-
],
65+
),
6866
],
6967
);
7068
}

0 commit comments

Comments
 (0)