Hey fellows,
Is it possible to create an application here, that would work in offline mode and would be sichronized by pressing a button?
Or is this one for online use only?
Thanks
Hey fellows,
Is it possible to create an application here, that would work in offline mode and would be sichronized by pressing a button?
Or is this one for online use only?
Thanks
Hi,
Itās mainly āonlineā use only butā¦ depending on how much you know about JavaScript, service workers, manifest files and utilising the browserās local storage it is possible to do such things.
Thereās a few techy posts about this on the forum.
Thereās nothing built into the Editor that allows this, although Iād love it if there was a little checkbox that said āmake available offlineā unfortunately I donāt think it would be that simple.
Paul
Itās definitely possible to make your app functional offline. Youāll need to build a service worker and cache resources so that when the user goes offline, resources are fetched from the cache rather than the network.
Itās fairly easy to cache static content from your Bubble app that way. Itās a lot more difficult when it comes to caching content thatās generated based on items from a database. The Bubble API that retrieves that data has parameters that change on every request ā making it extremely difficult to cache.