no_internet_check 1.0.0 copy "no_internet_check: ^1.0.0" to clipboard
no_internet_check: ^1.0.0 copied to clipboard

Automatically show no internet screen on top of your current screen and when there is internet it automatically pop the no internet screen.

no_internet_check #

A Flutter Package that depends on internet_connection_checker and flutter_toast. This package check the internet connectivity. If there is no internet, it show no internet screen. And if there is internet it will return you back to previous screen where you are.

Note that this plugin is just a test. you can fork it and make it better.

Quick start #

You can refer to example code.

add this line inside MaterialApp or if you are using your own key add that one.

 navigatorKey: NavigationService.navigationKey,

call this method inside splash screen or inside your app first screen. if you are using await inside your main method. then you can also paste this code inside your main method. if you are using your own key pass it inside constructor

 InternetChecker(); //optional: you can pass custom no internet page as an argument

And You are done.

If you are using your own custom no internet page and you have pop() functionality. Then before poping the custom no internet page, add this line

 IndexClass.index = 0;

if you are hitting autologin api inside splash screen if you are using your own key pass it inside navigateTo() constructor

 if (IndexClass.index == 0) {  // there is internet
       checkAutoLogin();
     } else { // there is no internet
       WidgetsBinding.instance.addPostFrameCallback((timeStamp) {
         NavigationService.navigateTo().then((value) {
           checkAutoLogin(); 
         });
       });
     }
14
likes
110
pub points
68%
popularity

Publisher

unverified uploader

Automatically show no internet screen on top of your current screen and when there is internet it automatically pop the no internet screen.

Repository (GitLab)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, flutter_toastr, internet_connection_checker

More

Packages that depend on no_internet_check