mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-16 17:27:39 +00:00
add back button to wallet view
This commit is contained in:
parent
8bcd155967
commit
af3c5c896a
1 changed files with 9 additions and 3 deletions
|
@ -189,7 +189,7 @@ class _WalletViewState extends ConsumerState<WalletView> {
|
|||
return false;
|
||||
}
|
||||
|
||||
void _logout() {
|
||||
void _logout() async {
|
||||
if (_shouldDisableAutoSyncOnLogOut) {
|
||||
// disable auto sync if it was enabled only when loading wallet
|
||||
ref.read(managerProvider).shouldAutoSync = false;
|
||||
|
@ -199,7 +199,7 @@ class _WalletViewState extends ConsumerState<WalletView> {
|
|||
if (ref.read(prefsChangeNotifierProvider).isAutoBackupEnabled &&
|
||||
ref.read(prefsChangeNotifierProvider).backupFrequencyType ==
|
||||
BackupFrequencyType.afterClosingAWallet) {
|
||||
ref.read(autoSWBServiceProvider).doBackup();
|
||||
unawaited(ref.read(autoSWBServiceProvider).doBackup());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -364,7 +364,13 @@ class _WalletViewState extends ConsumerState<WalletView> {
|
|||
onWillPop: _onWillPop,
|
||||
child: Scaffold(
|
||||
appBar: AppBar(
|
||||
automaticallyImplyLeading: false,
|
||||
leading: AppBarBackButton(
|
||||
onPressed: () {
|
||||
_logout();
|
||||
Navigator.of(context).pop();
|
||||
},
|
||||
),
|
||||
titleSpacing: 0,
|
||||
title: Row(
|
||||
children: [
|
||||
SvgPicture.asset(
|
||||
|
|
Loading…
Reference in a new issue