mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-03 17:40:43 +00:00
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:
parent
b2b17e66c5
commit
f12995db8a
2 changed files with 5 additions and 5 deletions
|
@ -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)),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue