CAKE-284 | changed color of filter icon and question mark in the main menu; changed height of the main menu items

OleksandrSobol committed Feb 26, 2021 at 18:37 UTC f12995db8a331ae6cc9a1534887541ed82a2cfa1
2 files changed +5 -5
lib/src/screens/dashboard/wallet_menu.dart
+2 -2
@@ -20,7 +20,7 @@ class WalletMenu {
20 WalletMenuItem(
21 title: S.current.rescan,
22 image: Image.asset('assets/images/filter_icon.png',
23 - height: 16, width: 16)),
23 + height: 16, width: 16, color: Palette.darkBlue)),
24 WalletMenuItem(
25 title: S.current.wallets,
26 image: Image.asset('assets/images/wallet_menu.png',
@@ -50,7 +50,7 @@ class WalletMenu {
50 WalletMenuItem(
51 title: S.current.settings_support,
52 image: Image.asset('assets/images/question_mark.png',
53 - height: 16, width: 16)),
53 + height: 16, width: 16, color: Palette.darkBlue)),
54 ]);
55 }
56
lib/src/screens/dashboard/widgets/menu_widget.dart
+3 -3
@@ -38,10 +38,10 @@ class MenuWidgetState extends State<MenuWidget> {
38 screenWidth = 0;
39 screenHeight = 0;
40
41 - headerHeight = 137;
42 - tileHeight = 75;
41 + headerHeight = 120;
42 + tileHeight = 60;
43 fromTopEdge = 50;
44 - fromBottomEdge = 30;
44 + fromBottomEdge = 25;
45
46 super.initState();
47 WidgetsBinding.instance.addPostFrameCallback(afterLayout);