Skip to content

Commit

Permalink
feat(app) increase popup duration
Browse files Browse the repository at this point in the history
  • Loading branch information
helderbetiol committed Mar 1, 2024
1 parent 3e9196d commit 4f58f79
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion APP/lib/widgets/tenants/popups/backup_popup.dart
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,8 @@ class _BackupPopupState extends State<BackupPopup>
switch (result) {
case Success(value: final value):
showSnackBar(messenger,
"Backup restored: ${value.substring(value.lastIndexOf("+0000") + 5).trim()}");
"Backup restored: ${value.substring(value.lastIndexOf("+0000") + 5).trim()}",
duration: const Duration(seconds: 10));
setState(() {
_loadFileResult = value;
_isLoading = false;
Expand Down

0 comments on commit 4f58f79

Please sign in to comment.