We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6378793 commit 3d93b3bCopy full SHA for 3d93b3b
1 file changed
lib/services/upload_notifier.dart
@@ -23,7 +23,7 @@ class UploadNotifier extends ChangeNotifier {
23
void itemUploadCompleted(UploadItem item, {bool error = false}) {
24
_uploadList.remove(item);
25
item.error = error;
26
- _uploadHistoryList.add(item);
+ _uploadHistoryList.insert(0, item);
27
notifyListeners();
28
}
29
0 commit comments