-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: ✨ list the wifi network properties
if the wifi is available
- Loading branch information
Showing
3 changed files
with
163 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
import 'dart:async'; | ||
import 'dart:developer' as developer; | ||
import 'dart:io'; | ||
|
||
import 'package:flutter/foundation.dart'; | ||
import 'package:flutter/material.dart'; | ||
import 'package:flutter/services.dart'; | ||
import 'package:network_info_plus/network_info_plus.dart'; | ||
import 'package:permission_handler/permission_handler.dart'; | ||
import 'package:forui/forui.dart'; | ||
|
||
class NetworkStats extends StatefulWidget { | ||
const NetworkStats({super.key}); | ||
|
||
@override | ||
State<NetworkStats> createState() => _NetworkStatsState(); | ||
} | ||
|
||
class _NetworkStatsState extends State<NetworkStats> { | ||
List<List<String>> _connectionStatus = []; | ||
final NetworkInfo _networkInfo = NetworkInfo(); | ||
|
||
@override | ||
void initState() { | ||
super.initState(); | ||
_initNetworkInfo(); | ||
} | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return FTileGroup( | ||
children: List.generate( | ||
_connectionStatus.length, | ||
(index) => FTile( | ||
title: Text(_connectionStatus[index][0]), | ||
details: Text(_connectionStatus[index][1]), | ||
)), | ||
); | ||
} | ||
|
||
Future<void> _initNetworkInfo() async { | ||
String? wifiName, | ||
wifiBSSID, | ||
wifiIPv4, | ||
wifiIPv6, | ||
wifiGatewayIP, | ||
wifiBroadcast, | ||
wifiSubmask; | ||
|
||
try { | ||
if (!kIsWeb && (Platform.isAndroid || Platform.isIOS)) { | ||
// Request permissions as recommended by the plugin documentation: | ||
// https://github.com/fluttercommunity/plus_plugins/tree/main/packages/network_info_plus/network_info_plus | ||
if (await Permission.locationWhenInUse.request().isGranted) { | ||
wifiName = await _networkInfo.getWifiName(); | ||
} else { | ||
wifiName = 'Unauthorized to get Wifi Name'; | ||
} | ||
} else { | ||
wifiName = await _networkInfo.getWifiName(); | ||
} | ||
} on PlatformException catch (e) { | ||
developer.log('Failed to get Wifi Name', error: e); | ||
wifiName = 'Failed to get Wifi Name'; | ||
} | ||
|
||
try { | ||
if (!kIsWeb && (Platform.isAndroid || Platform.isIOS)) { | ||
// Request permissions as recommended by the plugin documentation: | ||
// https://github.com/fluttercommunity/plus_plugins/tree/main/packages/network_info_plus/network_info_plus | ||
if (await Permission.locationWhenInUse.request().isGranted) { | ||
wifiBSSID = await _networkInfo.getWifiBSSID(); | ||
} else { | ||
wifiBSSID = 'Unauthorized to get Wifi BSSID'; | ||
} | ||
} else { | ||
wifiName = await _networkInfo.getWifiName(); | ||
} | ||
} on PlatformException catch (e) { | ||
developer.log('Failed to get Wifi BSSID', error: e); | ||
wifiBSSID = 'Failed to get Wifi BSSID'; | ||
} | ||
|
||
try { | ||
wifiIPv4 = await _networkInfo.getWifiIP(); | ||
} on PlatformException catch (e) { | ||
developer.log('Failed to get Wifi IPv4', error: e); | ||
wifiIPv4 = 'Failed to get Wifi IPv4'; | ||
} | ||
|
||
try { | ||
wifiIPv6 = await _networkInfo.getWifiIPv6(); | ||
} on PlatformException catch (e) { | ||
developer.log('Failed to get Wifi IPv6', error: e); | ||
wifiIPv6 = 'Failed to get Wifi IPv6'; | ||
} | ||
|
||
try { | ||
wifiSubmask = await _networkInfo.getWifiSubmask(); | ||
} on PlatformException catch (e) { | ||
developer.log('Failed to get Wifi submask address', error: e); | ||
wifiSubmask = 'Failed to get Wifi submask address'; | ||
} | ||
|
||
try { | ||
wifiBroadcast = await _networkInfo.getWifiBroadcast(); | ||
} on PlatformException catch (e) { | ||
developer.log('Failed to get Wifi broadcast', error: e); | ||
wifiBroadcast = 'Failed to get Wifi broadcast'; | ||
} | ||
|
||
try { | ||
wifiGatewayIP = await _networkInfo.getWifiGatewayIP(); | ||
} on PlatformException catch (e) { | ||
developer.log('Failed to get Wifi gateway address', error: e); | ||
wifiGatewayIP = 'Failed to get Wifi gateway address'; | ||
} | ||
|
||
setState(() { | ||
_connectionStatus = [ | ||
['Wifi Name', wifiName ?? "N/A"], | ||
['Wifi BSSID', wifiBSSID ?? "N/A"], | ||
['Wifi IPv4', wifiIPv4 ?? "N/A"], | ||
['Wifi IPv6', wifiIPv6 ?? "N/A"], | ||
['Wifi Broadcast', wifiBroadcast ?? "N/A"], | ||
['Wifi Gateway', wifiGatewayIP ?? "N/A"], | ||
['Wifi Submask', wifiSubmask ?? "N/A"], | ||
]; | ||
}); | ||
} | ||
} |