flml_internet_checker 0.0.9 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.