So I heard that firebase has no real out of the box support for starting up a web app in offline mode.
Say you have a Todo Web App. You can login to google or something, and then the todos are saved under the uid to firebase. So that if you open the app on whatever device, the todos will always be synced.
Firebase makes sure everything still works, when the network disconnects when you are working on the app already. So there is no problem.
But say you are using this web app on your mobile. And you open up the app offline. So now firebase seems to have no idea how to handle this. So what could I best do to make sure things still work?
Any solutions. So I can save the todos to local storage or something. And open up those todos from local storage, only when the app starts up without connection.
I tried a bit, but I find it hard to get this working, especially making sure that firebase still understand the new state when online again.
Any directions, tips are highly appreciated.