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

Couldn't get constant wifi rssi or signal strength values with WiFiScan.instance.onScannedResultsAvailable.listen . So is there any way i could solve this issue?

I am connected to a router and that is multiple SSID. If I connect with a single SSID is it possible to fetch a list of other SSID of the...

Hi, guys, First, sorry for my poor English. I try to connect to WiFi AP from flutter application on Lenovo Android 11 tablet and has some issue. [My Code] ```...

final result=await WiFiForIoTPlugin.registerWifiNetwork(STA_DEFAULT_SSID, password: STA_DEFAULT_PASSWORD, security: NetworkSecurity.WPA, ); PlatformException(Error, Error updating network configuration, , null)

Even for the first time when I try to connect to WiFi, it asks whether I want to connect to the network **permanently** this is how I use it :...

I am working on a part of an indoor localization project. I need my Flutter application scan and get Mac addresses and RSSI values of Wifi and Bluetooth devices. I...

I'm using wifi_iot. If conected the Nebula VPN app (it's a mesh overlay networking VPN, similar to Tailscale - it is only used to route some private IP addresses, it...

Does somebody know why this happens? Whenever I connect to a wifi and execute forceWifiUsage, the package connectivity_plus no longer recognizes that I'm in a wifi network

Can anyone help me how to properly setup the ios part. I have tried all things but its still giving me null value for ios.

this is my code: Future connectToWifi(String ssid) async { try { var details = await WiFiForIoTPlugin.connect(ssid, security: NetworkSecurity.NONE, joinOnce: true); print('details are $details'); if (details) { print('connected sucessfuly'); } else...