There was an error while loading. Please reload this page.
1 parent c58d4bc commit 3aa15c5Copy full SHA for 3aa15c5
1 file changed
lib/features/backup_settings/ui/screens/backup_settings_screen.dart
@@ -59,15 +59,14 @@ class _Screen extends StatelessWidget {
59
child: _BackupTestStatusWidget(),
60
),
61
const Gap(40),
62
+ const _StartBackupButton(),
63
if (state.lastEncryptedBackup != null)
64
const _ViewVaultKeyButton(),
65
if (state.lastEncryptedBackup != null ||
66
state.lastPhysicalBackup != null)
67
const _TestBackupButton(),
- const _StartBackupButton(),
68
- const _Bip329LabelsButton(),
69
const _RecoverBullSettingsButton(),
70
- const Gap(20),
+ const _Bip329LabelsButton(),
71
if (state.error != null) ErrorWidget(error: state.error!),
72
],
73
@@ -156,6 +155,7 @@ class _StartBackupButton extends StatelessWidget {
156
155
Widget build(BuildContext context) {
157
return SettingsEntryItem(
158
icon: Icons.save_as,
+ iconColor: context.appColors.primary,
159
title: context.loc.backupSettingsStartBackup,
160
onTap: () => context.pushNamed(
161
BackupSettingsSubroute.backupOptions.name,
0 commit comments