user19728436
user19728436

Reputation:

Flutter: Check if actually connected to the internet (web, ...)

How can I check if the app is connected to the internet, especially on web. InternetAddress.lookup is not supported on web and http.get has quite some overhead, because it fetches the entire webpage.

Upvotes: 0

Views: 76

Answers (1)

F Perroch
F Perroch

Reputation: 2225

You can use this package to check if you are connected to internet or not :

https://pub.dev/packages/connectivity_checker

Upvotes: 0

Related Questions