mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 09:47:35 +00:00
Move address book above security settings in menu
This commit is contained in:
parent
b5ba26adcd
commit
53e713a105
1 changed files with 6 additions and 6 deletions
|
@ -21,6 +21,12 @@ class WalletMenu {
|
||||||
height: 16, width: 16),
|
height: 16, width: 16),
|
||||||
handler: () => Navigator.of(context).pushNamed(Routes.walletList),
|
handler: () => Navigator.of(context).pushNamed(Routes.walletList),
|
||||||
),
|
),
|
||||||
|
WalletMenuItem(
|
||||||
|
title: S.current.address_book_menu,
|
||||||
|
image: Image.asset('assets/images/open_book_menu.png',
|
||||||
|
height: 16, width: 16),
|
||||||
|
handler: () => Navigator.of(context).pushNamed(Routes.addressBook),
|
||||||
|
),
|
||||||
WalletMenuItem(
|
WalletMenuItem(
|
||||||
title: S.current.security_and_backup,
|
title: S.current.security_and_backup,
|
||||||
image:
|
image:
|
||||||
|
@ -28,12 +34,6 @@ class WalletMenu {
|
||||||
handler: () {
|
handler: () {
|
||||||
Navigator.of(context).pushNamed(Routes.securityBackupPage);
|
Navigator.of(context).pushNamed(Routes.securityBackupPage);
|
||||||
}),
|
}),
|
||||||
WalletMenuItem(
|
|
||||||
title: S.current.address_book_menu,
|
|
||||||
image: Image.asset('assets/images/open_book_menu.png',
|
|
||||||
height: 16, width: 16),
|
|
||||||
handler: () => Navigator.of(context).pushNamed(Routes.addressBook),
|
|
||||||
),
|
|
||||||
WalletMenuItem(
|
WalletMenuItem(
|
||||||
title: S.current.privacy_settings,
|
title: S.current.privacy_settings,
|
||||||
image:
|
image:
|
||||||
|
|
Loading…
Reference in a new issue