I have successfully implemented the OnResume on my xamarin forms app (PCL) we are building , OnResume works fine.
My issue is:
OnAppearing() I load data from sqlite db and show them , and once the user put the app in the background (app.Suspended) and re activate (app.Resumed) i download new data from rest API and insert to sqlite db, data is up-to-date on the sqlite db, but since OnAppearing() is not happning again it will not get load the up-to-date data to the page.
Can any one please let me know how to archive this ?
Cheers
Asanka