internet_popup 1.0.8+5 copy "internet_popup: ^1.0.8+5" to clipboard
internet_popup: ^1.0.8+5 copied to clipboard

A package for popUp message when Internet connection is off. Write one line to initialize a popUp when internet connection is turned off or connected but no internet.

internet_popup #

A package that shows a pop up alert when the internet connection is lost MIT License

App Screenshot

Features #

  • auto popUp
  • option to fix or pop the warning
  • one line implementation
  • callBack function to do something after internet connectivity status change

Usage #

initialize InternetPopup class and add context inside initState() funtion of the top of your widget tree.

 InternetPopup().initialize(context: context);
copied to clipboard

when the widget is popped from widget tree, initialize it again on next page.

If you want your own widget to popUp, use

 InternetPopup().initializeCustomWidget(context: context, widget: /*** your custom widget ***/);
copied to clipboard

You can write custom message title and description using customMessage and customDescription parameter inside initialize.

use onTapPop parameter to decide if the box can be removed before internet connection is back online.

You can use checkInternet function to get a Future

 bool isConnected = await InternetPopup().checkInternet();
copied to clipboard
53
likes
70
points
40
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.17 - 2025.04.01

A package for popUp message when Internet connection is off. Write one line to initialize a popUp when internet connection is turned off or connected but no internet.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

connectivity_plus, flutter, internet_connection_checker

More

Packages that depend on internet_popup