flutter_reachability 1.0.0
flutter_reachability: ^1.0.0 copied to clipboard
This plugin allows Flutter applications to detect network changes. You can know the detailed mobile network types such as 2G, 3G, 4G, 5G. This plug-in is suitable for iOS and Android.
import 'dart:io';
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter_reachability/flutter_reachability.dart';
import 'package:permission_handler/permission_handler.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
String _networkStatus = 'Unknown';
StreamSubscription<NetworkStatus> subscription;
@override
void initState() {
super.initState();
_listenNetworkStatus();
}
_listenNetworkStatus()async {
if(Platform.isAndroid) {
await Permission.phone.request();
}
subscription = FlutterReachbility().onNetworkStateChanged.listen((event) {
setState(() {
_networkStatus = "${event}";
});
});
}
_currentNetworkStatus() async {
if(Platform.isAndroid) {
await Permission.phone.request();
}
NetworkStatus status = await FlutterReachbility().currentNetworkStatus();
switch(status) {
case NetworkStatus.unreachable:
//unreachable
case NetworkStatus.wifi:
//wifi
case NetworkStatus.mobile2G:
//2g
case NetworkStatus.moblie3G:
//3g
case NetworkStatus.moblie4G:
//4g
case NetworkStatus.moblie5G:
//5h
case NetworkStatus.otherMoblie:
//other
}
setState(() {
_networkStatus = status.toString() ;
});
}
@override
void dispose() {
// TODO: implement dispose
super.dispose();
subscription.cancel();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: Text('Running on: $_networkStatus\n'),
),
),
);
}
}
copied to clipboard