flml_internet_checker 0.0.9 copy "flml_internet_checker: ^0.0.9" to clipboard
flml_internet_checker: ^0.0.9 copied to clipboard

This package aims to check internet connection by just wrapping the widget with InternetChecker Widget without using any function calls inside your app"

Internet connectivity checking package. #

A Flutter package to check your internet connection by just wrapping the Scaffold with InternetChecker Widget.


Permissions #

Android #

Add the following permissions to your AndroidManifest.xml file:

<uses-permission android:name="android.permission.INTERNET" />

macOS #

Add the following permissions to your macOS .entitlements files:

<key>com.apple.security.network.client</key>
<true/>

Usage #

1. Add dependency #

Add the flml_internet_checker package to your pubspec.yaml file:

dependencies:
  flml_internet_checker: ^0.0.9

2. Import the package #

Import the flml_internet_checker package into your Dart file:

import 'package:flml_internet_checker/flml_internet_checker.dart';

Example #

InternetChecker(
      placeHolder: Lottie.asset(
        "assets/no_internet.json",
        height: 250,
      ),
      internetConnectionText: "No Internet Connection",
      child: const Scaffold(
        body: Center(
          child: Text("You are Online"),
        ),
      ),
    );

Credits #

This package is a cloned and modified version of the internet_connection_checker_plus package.

The aim of this package is just to check the internet connectivity without putting the functions into the project and just wrap the widget with InternetChecker Widget.

33
likes
140
pub points
63%
popularity

Publisher

unverified uploader

This package aims to check internet connection by just wrapping the widget with InternetChecker Widget without using any function calls inside your app"

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, google_fonts, internet_connection_checker_plus

More

Packages that depend on flml_internet_checker