You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 1, 2024. It is now read-only.
Inconsistent Behavior of OnAppearing and OnDisappearing Methods on iOS When Minimizing App
Steps to Reproduce
Open the application on an iOS device.
Navigate to the page with the implemented OnAppearing() and OnDisappearing() methods.
Observe the correct execution of these methods when navigating between pages.
Minimize the application (tap the home button or use the swipe gesture to go to the home screen).
Maximize the application from the home screen.
Additional Details:
The issue appears to be specific to the iOS platform.
The OnAppearing() and OnDisappearing() methods behave correctly during page navigation.
It seems that the application lifecycle events might not be triggered appropriately upon minimizing and restoring the app.
The OnAppearing() and OnDisappearing() methods should consistently execute properly, both when navigating between pages and when minimizing and restoring the application on iOS.
Actual Behavior
After minimizing and then maximizing the application on iOS, the OnAppearing() and OnDisappearing() methods do not execute as expected.
Basic Information
Version with issue:
Last known good version:
Platform Target Frameworks:
iOS:
Android:
UWP:
Android Support Library / AndroidX Version:
NuGet Packages:
Affected Devices:
Environment
Show/Hide Visual Studio info
Build Logs
Screenshots
Reproduction Link
Workaround
The text was updated successfully, but these errors were encountered:
Description
Inconsistent Behavior of OnAppearing and OnDisappearing Methods on iOS When Minimizing App
Steps to Reproduce
Additional Details:
The issue appears to be specific to the iOS platform.
The OnAppearing() and OnDisappearing() methods behave correctly during page navigation.
It seems that the application lifecycle events might not be triggered appropriately upon minimizing and restoring the app.
Issue Description:
Code Snippet:
protected override void OnAppearing()
{
base.OnAppearing();
}
protected override void OnDisappearing()
{
base.OnDisappearing();
}
Expected Behavior
The OnAppearing() and OnDisappearing() methods should consistently execute properly, both when navigating between pages and when minimizing and restoring the application on iOS.
Actual Behavior
After minimizing and then maximizing the application on iOS, the OnAppearing() and OnDisappearing() methods do not execute as expected.
Basic Information
Environment
Show/Hide Visual Studio info
Build Logs
Screenshots
Reproduction Link
Workaround
The text was updated successfully, but these errors were encountered: