File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## [ 0.4.4] - 2022/04/20.
2
+
3
+ * issue #20 . Fix error ` Concurrent modification during iteration ` .
4
+
1
5
## [ 0.4.3] - 2022/02/17.
2
6
3
7
* issue #19 .
Original file line number Diff line number Diff line change @@ -22,10 +22,11 @@ class LifecycleObserver extends NavigatorObserver with WidgetsBindingObserver {
22
22
@protected
23
23
factory LifecycleObserver .internalGet (BuildContext context) {
24
24
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];
26
27
if (observer.navigator == null ) {
27
28
WidgetsBinding .instance? .removeObserver (observer);
28
- _cache.remove (observer );
29
+ _cache.removeAt (i );
29
30
} else if (observer.navigator == navigator) {
30
31
return observer;
31
32
}
Original file line number Diff line number Diff line change 1
1
name : lifecycle
2
2
description : Lifecycle support for Flutter widgets.
3
- version : 0.4.3
3
+ version : 0.4.4
4
4
homepage : https://github.com/chenenyu/lifecycle
5
5
6
6
environment :
You can’t perform that action at this time.
0 commit comments