Skip to content

Commit

Permalink
Merge pull request #19 from maonaoda/master
Browse files Browse the repository at this point in the history
Update RxMauiMicroViewModel.cs
  • Loading branch information
dansiegel authored May 8, 2024
2 parents b91dea2 + 66229a7 commit c545530
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MauiMicroMvvm.Rx/RxMauiMicroViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void IViewLifecycle.OnAppearing() =>
_viewLifecycleState.OnNext(ViewLifecycleState.Appearing);

void IViewLifecycle.OnDisappearing() =>
_viewLifecycleState.OnNext(ViewLifecycleState.Appearing);
_viewLifecycleState.OnNext(ViewLifecycleState.Disappearing);

void IAppLifecycle.OnResume() =>
_applifecycleState.OnNext(AppLifecycleState.Resume);
Expand All @@ -85,4 +85,4 @@ public void Dispose()
if (!IsDisposed)
IsDisposed = true;
}
}
}

0 comments on commit c545530

Please sign in to comment.