Add ability to delete an array entry

This commit is contained in:
zontreck 2024-07-27 18:09:33 -07:00
parent c44f3a7c7f
commit 7a5502fbf9
12 changed files with 72 additions and 10 deletions

View file

@ -31,7 +31,7 @@ class PermissionsRequiredPage extends StatelessWidget {
content: Text(
"The storage permission is reporting it is permanently denied. Please open settings and allow that permission.")));
} else if (stat.isGranted) {
Future.delayed(const Duration(seconds: 5), () {
Future.delayed(const Duration(seconds: 2), () {
Navigator.pop(context);
});
}