CAKE-45 | changed wallet list tile (wallet list page); changed wallet menu tile (wallet menu alert)

OleksandrSobol committed Sep 24, 2020 at 20:46 UTC 83ef5c179db0352516caff7be118806fcc9ca422
2 files changed +4 -21
lib/src/screens/wallet_list/wallet_list_page.dart
-17
@@ -121,23 +121,6 @@ class WalletListBodyState extends State<WalletListBody> {
121 ),
122 ),
123 ),
124 - Container(
125 - height: tileHeight,
126 - width: 10,
127 - decoration: BoxDecoration(
128 - borderRadius: BorderRadius.only(
129 - topLeft: Radius.circular(10),
130 - bottomLeft: Radius.circular(10)),
131 - gradient: LinearGradient(
132 - begin: Alignment.topCenter,
133 - end: Alignment.bottomCenter,
134 - colors: [
135 - Theme.of(context).accentTextTheme.headline.color,
136 - Theme.of(context).accentTextTheme.headline.backgroundColor
137 - ]
138 - )
139 - ),
140 - ),
124 ],
125 ),
126 )
lib/src/screens/wallet_list/widgets/wallet_menu_alert.dart
+4 -4
@@ -57,18 +57,18 @@ class WalletMenuAlert extends StatelessWidget {
57 wallet);
58 },
59 child: Container(
60 - padding: EdgeInsets.only(top: 12, bottom: 12),
60 + height: 60,
61 child: Row(
62 mainAxisSize: MainAxisSize.min,
63 mainAxisAlignment: MainAxisAlignment.start,
64 crossAxisAlignment: CrossAxisAlignment.center,
65 children: <Widget>[
66 Container(
67 - height: 56,
68 - width: 56,
67 + height: 32,
68 + width: 32,
69 decoration: BoxDecoration(
70 borderRadius: BorderRadius.all(
71 - Radius.circular(12)),
71 + Radius.circular(4)),
72 gradient: LinearGradient(
73 begin: Alignment.topCenter,
74 end: Alignment.bottomCenter,