Skip to content
This repository has been archived by the owner on Apr 12, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1027 from cocoa-mhlw/feature/update-en-info-when-…
Browse files Browse the repository at this point in the history
…return-from-background

Fixed the screen information to be updated when returning from the background
  • Loading branch information
cocoa-dev003 authored Jun 2, 2022
2 parents c6bd611 + bafedde commit caa3f08
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,20 @@ await Share.RequestAsync(new ShareFileRequest
}
});

public override async void OnAppearing()
{
base.OnAppearing();

await InitExposures();
}

public override async void OnResume()
{
base.OnResume();

await InitExposures();
}
}

public class ExposureSummary
Expand Down

0 comments on commit caa3f08

Please sign in to comment.