We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 46ebe09 + 0726df2 commit ed1237eCopy full SHA for ed1237e
Stellar/ViewManager.cs
@@ -58,8 +58,8 @@ public ViewManager()
58
{
59
_controlBindings = new(this);
60
61
- _lifecycleEvents = new(() => new Subject<LifecycleEvent>().DisposeWith(_controlBindings), LazyThreadSafetyMode.ExecutionAndPublication);
62
- _navigationEvents = new(() => new Subject<NavigationEvent>().DisposeWith(_controlBindings), LazyThreadSafetyMode.ExecutionAndPublication);
+ _lifecycleEvents = new(() => new Subject<LifecycleEvent>(), LazyThreadSafetyMode.ExecutionAndPublication);
+ _navigationEvents = new(() => new Subject<NavigationEvent>(), LazyThreadSafetyMode.ExecutionAndPublication);
63
}
64
65
public void Dispose()
0 commit comments