File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments