WiFiFlutter icon indicating copy to clipboard operation
WiFiFlutter copied to clipboard

Flutter plugin suite for various WiFi services.

Results 135 WiFiFlutter issues
Sort by recently updated
recently updated
newest added

await WiFiForIoTPlugin.connect returns false and shows message Unable to join the network in iOS device.

class WifiList extends StatefulWidget { @override _WifiListState createState() => _WifiListState(); } class _WifiListState extends State { List _networks = []; @override void initState() { super.initState(); loadNetworks(); } void loadNetworks() async...

[!] CocoaPods could not find compatible versions for pod "Flutter": In Podfile: Flutter (from `Flutter`) wifi_scan (from `.symlinks/plugins/wifi_scan/ios`) was resolved to 0.0.1, which depends on Flutter Specs satisfying the `Flutter...

On IOS 16 (I havent tried previous versions), .connect returns true for a network that doesnt even exist. I get the ios dialog saying "Can't connect to network". But i...

I choose the "withInternet" option for connecting to wifi. Notification or popup is coming on Android 10 and above phones. Waiting for him to confirm. It connects after turning the...

On android 12 ```dart bool connect = await WiFiForIoTPlugin.findAndConnect(ssid, joinOnce: true); ``` Always return false and never works. But works absolutely fine on Android 11. On Android 11 a pop...

I am using wifi_scan explample to list all the near by WiFi network. My idea is when I tap on the network ESP8266 in AP mode, next connect the selected...

When running ```dart bool wifiEnabled = await WiFiForIoTPlugin.isEnabled(); ``` This is always false, even though WiFi is enabled and working. And when running ```dart String? wifiSSID = await WiFiForIoTPlugin.getSSID(); ```...

I implemented this plugin in background process, but it show error like missingpluginexception : missingpluginexception(no implementation found for method getssid on channel wifi_iot) in callbackdispatcher flutter I am currenttly using...