flutternetwork / WiFiFlutter

Flutter plugin suite for various WiFi services.
https://wifi.flutternetwork.dev
290 stars 183 forks source link

Avoid " The Wi - Fi network does not appear to be connected to the internet " prompt on iOS #376

Open Jay-57blocks opened 8 months ago

Jay-57blocks commented 8 months ago

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 a ‘LOT device ’ and it cannot access the Internet. Is there any way to remove the prompt? ,Thanks

image

wifi_iot: ^0.3.19

 await WiFiForIoTPlugin.connect(
          ssid,
          //Device Wifi cannot access the Internet, so it is true
          withInternet: false,

          /// @param [joinOnce] If true, the network will be removed on exit.
          joinOnce: false,
          // Connection timeout period
          timeoutInSeconds: EDG_CONNECT_TIMEOUT.inSeconds,
        );