Xamarin forms working in offline mode with sqllite

Viewed 206

I need a nuget package or some good practice how to do a whole-app offline mode working? Im having login, xf maps, CRUD operations etc. I found some guidence but it is regarding xf offline mode with azure but I really need is logging everything in my db.

Logic: after each api call (while I have internet), drop all tables, create new ones, and insert fresh data. (with delete wont work, because, those unique ids are reserved already) when I dont have internet, read from db "old" data

2 Answers
Related