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

This commit is contained in:
OleksandrSobol 2021-02-26 18:37:41 +02:00
parent b2b17e66c5
commit f12995db8a
2 changed files with 5 additions and 5 deletions

View file

@ -20,7 +20,7 @@ class WalletMenu {
WalletMenuItem( WalletMenuItem(
title: S.current.rescan, title: S.current.rescan,
image: Image.asset('assets/images/filter_icon.png', image: Image.asset('assets/images/filter_icon.png',
height: 16, width: 16)), height: 16, width: 16, color: Palette.darkBlue)),
WalletMenuItem( WalletMenuItem(
title: S.current.wallets, title: S.current.wallets,
image: Image.asset('assets/images/wallet_menu.png', image: Image.asset('assets/images/wallet_menu.png',
@ -50,7 +50,7 @@ class WalletMenu {
WalletMenuItem( WalletMenuItem(
title: S.current.settings_support, title: S.current.settings_support,
image: Image.asset('assets/images/question_mark.png', image: Image.asset('assets/images/question_mark.png',
height: 16, width: 16)), height: 16, width: 16, color: Palette.darkBlue)),
]); ]);
} }

View file

@ -38,10 +38,10 @@ class MenuWidgetState extends State<MenuWidget> {
screenWidth = 0; screenWidth = 0;
screenHeight = 0; screenHeight = 0;
headerHeight = 137; headerHeight = 120;
tileHeight = 75; tileHeight = 60;
fromTopEdge = 50; fromTopEdge = 50;
fromBottomEdge = 30; fromBottomEdge = 25;
super.initState(); super.initState();
WidgetsBinding.instance.addPostFrameCallback(afterLayout); WidgetsBinding.instance.addPostFrameCallback(afterLayout);