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

### Steps - `final canScan = await scanner.canStartScan(askPermissions: true);` - `await scanner.startScan();` - `final canGetResults = await scanner.canGetScannedResults(askPermissions: true);` ### Actual - returns `noLocationPermission` ### Expected - Ask related permissions...

I found that the prompt "The Wi-Fi network does not appear to be connected to the internet" occasionally appears on iOS. I don't want this prompt. I am connecting to...

Hi, I'm testing it on an Android 6 phone, WiFiForIoTPlugin.disconnect() returned true, but wifi is still working. Any ideas?

This pull request restructures the repository to follow the [federated plugin format](https://docs.flutter.dev/packages-and-plugins/developing-packages#federated-plugins): * `WiFiScan` now is the app-facing class, and as such contains package methods signatures (`canStartScan`, `startScan` etc); *...

**BugReproduce**: - On iOS device - Location Permission is enabled and granted. Performing `final connectedSSID = await WiFiForIoTPlugin.getSSID()` should see the current connectedSSID. - iOS device is already connected to...

Hello Together, I'm working on Android 11 device which is POCO M2 Pro MIUI 12.5.6 Global version stable. I m developing app which is scanning the QR code to get...

log detail: can print WiFi frequency and signal and ip I/flutter ( 9689): WiFi SSID: I/flutter ( 9689): WiFi BSSID: 02:00:00:00:00:00 I/flutter ( 9689): 当前WiFi信号强度: -31 dBm I/flutter ( 9689):...

Method registerWifiNetworkDeprecated is not working on Android 10, and instead an exception is raised. The reason is that WifiManager.addNetwork has been deprecated and will always return -1 on Android 10....

I cannot access a wifi spot on Android using this code: await WiFiForIoTPlugin.disconnect(); status = await WiFiForIoTPlugin.connect(_robotServerSsid, password: _robotServerPassword, joinOnce: (Platform.isIOS) ? false : true, security: NetworkSecurity.WPA, withInternet: false, timeoutInSeconds:...

I am connecting to a wifi network I am already connected to. I run code: ``` // Connect to the wifi with the provided credentials bool connected = await WiFiForIoTPlugin.connect(...