[SOLVED] Internet Connection Required?

Sorry, I know this is a completely bone head question to ask but NONE of the frameworks I’m looking at seem to clearly state this. Do apps created with this framework require internet for them to work? I think the correct term is “are they native?” but I’m self taught and don’t always know my terminology.

Thanks.

Apps can work offline, but it requires a little work from you up front. Since this is a web based framework, it’s sort of outside the scope, but things like service workers and cordova/phonegap make it possible to download and cache your app and run it offline whenever you want. Here is an example of a service worker in a demo web app.

Great. Thanks for your fast response.