Skip to content

Commit 1289c9d

Browse files
committed
Fix issue #20.
1 parent 9178cb3 commit 1289c9d

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [0.4.4] - 2022/04/20.
2+
3+
* issue #20. Fix error `Concurrent modification during iteration`.
4+
15
## [0.4.3] - 2022/02/17.
26

37
* issue #19.

lib/src/lifecycle_observer.dart

+3-2
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@ class LifecycleObserver extends NavigatorObserver with WidgetsBindingObserver {
2222
@protected
2323
factory LifecycleObserver.internalGet(BuildContext context) {
2424
NavigatorState navigator = Navigator.of(context);
25-
for (LifecycleObserver observer in _cache) {
25+
for (int i = _cache.length - 1; i >= 0; i--) {
26+
LifecycleObserver observer = _cache[i];
2627
if (observer.navigator == null) {
2728
WidgetsBinding.instance?.removeObserver(observer);
28-
_cache.remove(observer);
29+
_cache.removeAt(i);
2930
} else if (observer.navigator == navigator) {
3031
return observer;
3132
}

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: lifecycle
22
description: Lifecycle support for Flutter widgets.
3-
version: 0.4.3
3+
version: 0.4.4
44
homepage: https://github.com/chenenyu/lifecycle
55

66
environment:

0 commit comments

Comments
 (0)