flutter_network_connectivity 0.0.6 flutter_network_connectivity: ^0.0.6 copied to clipboard
A Flutter Plugin to check for live network connectivity status. Plugin uses NetworkCapabilities for Android and NetworkMonitor for iOS.
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_network_connectivity/flutter_network_connectivity.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
final FlutterNetworkConnectivity _flutterNetworkConnectivity =
FlutterNetworkConnectivity(
isContinousLookUp: true,
// optional, false if you cont want continous lookup
lookUpDuration: const Duration(seconds: 5),
// optional, to override default lookup duration
lookUpUrl: 'example.com', // optional, to override default lookup url
);
bool? _isInternetAvailableOnCall;
bool? _isInternetAvailableStreamStatus;
StreamSubscription<bool>? _networkConnectionStream;
@override
void initState() {
super.initState();
_flutterNetworkConnectivity.getInternetAvailabilityStream().listen((event) {
_isInternetAvailableStreamStatus = event;
setState(() {});
});
init();
}
@override
void dispose() async {
_networkConnectionStream?.cancel();
_flutterNetworkConnectivity.unregisterAvailabilityListener();
super.dispose();
}
void init() async {
await _flutterNetworkConnectivity.registerAvailabilityListener();
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> _checkInternetAvailability() async {
// Platform messages may fail, so we use a try/catch PlatformException.
// We also handle the message potentially returning null.
try {
_isInternetAvailableOnCall =
await _flutterNetworkConnectivity.isInternetConnectionAvailable();
} on PlatformException {
_isInternetAvailableOnCall = null;
}
// If the widget was removed from the tree while the asynchronous platform
// message was in flight, we want to discard the reply rather than calling
// setState to update our non-existent appearance.
if (!mounted) return;
setState(() {});
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Flutter Network Connectivity'),
),
body: Column(
children: [
Expanded(
child: Container(
color: Colors.black12,
child: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const SizedBox(height: 24.0),
const Text(
'Internet Availability Stream',
style: TextStyle(
fontSize: 16.0,
),
textAlign: TextAlign.center,
),
Expanded(
child: Center(
child: Text(
null == _isInternetAvailableStreamStatus
? 'Unknown State'
: _isInternetAvailableStreamStatus!
? "You're Connected to Network"
: "You're Offline",
style: const TextStyle(
fontSize: 18.0,
fontWeight: FontWeight.w600,
),
),
),
),
],
),
),
),
),
Expanded(
child: Container(
color: Colors.lightGreen.shade400,
child: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const SizedBox(height: 24.0),
const Text(
'Internet Availability Status on Call',
style: TextStyle(
fontSize: 16.0,
),
),
Expanded(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
null == _isInternetAvailableOnCall
? 'Unknown State'
: _isInternetAvailableOnCall!
? "You're Connected to Network"
: "You're Offline",
style: const TextStyle(
fontSize: 18.0,
fontWeight: FontWeight.w600,
),
),
const SizedBox(height: 50.0),
ElevatedButton(
onPressed: _checkInternetAvailability,
style: ElevatedButton.styleFrom(
primary: Colors.amberAccent,
),
child: const Text(
'Check Network State',
style: TextStyle(
color: Colors.black,
),
),
),
],
),
),
],
),
),
),
),
],
),
),
);
}
}