This is a fork of the Flutter wifi plugin that looks unmaintained as of 2020/12/27.
This fork adds the following features:
connectionmethod: added Android 10 compatibilityconnectionmethod: fix on Android 8 when the device wasn't already connected to another Wi-Fi networkconnectionmethod: added support for open networks, just leave thepasswordfield null or empty (Android and iOS)listmethod: added BSSID information (Android only)wifiEnabledmethod: new! Checks whether the Wi-FI adapter is eanbled (Android only)
Add this dependency to your pubspec.yaml:
dependencies:
wifi:
git:
url: https://github.com/thearaks/wifiref: developThen run pub upgrade to fetch the latest commit.
This plugin allows Flutter apps to get wifi ssid and list, connect wifi with ssid and password.
This plugin works Android.
iOS later released.
Sample usage to check current status:
import'package:wifi/wifi.dart';
String ssid =awaitWifi.ssid;
//Signal strength, 1-3,The bigger the number, the stronger the signalint level =awaitWifi.level;
String ip =awaitWifi.ip;
var result =awaitWifi.connection('ssid', 'password');
// only work on Android.List<WifiResult> list =awaitWifi.list('key'); // this key is used to filterWhen you use connection on iOS (iOS 11 only)
'build Phass' -> 'Link Binay With Libraries' add 'NetworkExtension.framework'

in 'Capabilities' open 'Hotspot Configuration'
If you device is iOS12, in 'Capabilities' open 'Access WiFi Information'
If you want to use Wifi.list on iOS,
reference http://baixin.io/2017/01/iOS_Wifilist/
For help getting started with Flutter, view our online documentation.
For help on editing plugin code, view the documentation.

