@@ -59,15 +59,14 @@ class _Screen extends StatelessWidget {
5959 child: _BackupTestStatusWidget (),
6060 ),
6161 const Gap (40 ),
62+ const _StartBackupButton (),
6263 if (state.lastEncryptedBackup != null )
6364 const _ViewVaultKeyButton (),
6465 if (state.lastEncryptedBackup != null ||
6566 state.lastPhysicalBackup != null )
6667 const _TestBackupButton (),
67- const _StartBackupButton (),
68- const _Bip329LabelsButton (),
6968 const _RecoverBullSettingsButton (),
70- const Gap ( 20 ),
69+ const _Bip329LabelsButton ( ),
7170 if (state.error != null ) ErrorWidget (error: state.error! ),
7271 ],
7372 ),
@@ -155,7 +154,8 @@ class _StartBackupButton extends StatelessWidget {
155154 @override
156155 Widget build (BuildContext context) {
157156 return SettingsEntryItem (
158- icon: Icons .backup,
157+ icon: Icons .save_as,
158+ iconColor: context.appColors.primary,
159159 title: context.loc.backupSettingsStartBackup,
160160 onTap: () => context.pushNamed (
161161 BackupSettingsSubroute .backupOptions.name,
@@ -243,7 +243,7 @@ class _Bip329LabelsButton extends StatelessWidget {
243243 @override
244244 Widget build (BuildContext context) {
245245 return SettingsEntryItem (
246- icon: Icons .label ,
246+ icon: Icons .sell ,
247247 title: context.loc.backupSettingsLabelsButton,
248248 onTap: () => context.push (Bip329LabelsRouter .route.path),
249249 );
@@ -256,7 +256,7 @@ class _RecoverBullSettingsButton extends StatelessWidget {
256256 @override
257257 Widget build (BuildContext context) {
258258 return SettingsEntryItem (
259- icon: Icons .settings ,
259+ icon: Icons .cloud_circle ,
260260 iconColor: context.appColors.secondary,
261261 textColor: context.appColors.secondary,
262262 title: context.loc.backupSettingsRecoverBullSettings,
0 commit comments