Flutter 颤振-如何访问Wifi详细信息?

Flutter 颤振-如何访问Wifi详细信息?,flutter,wifi,details,ssid,Flutter,Wifi,Details,Ssid,我正在通过蓝牙设置物联网设备。为此,我需要从我的用户那里获取Wifi详细信息。为简单起见,我想根据连接级别获得一个网络列表。如果您正在查找连接详细信息,请查看: 以下是如何查找当前SSID的方法: try { wifiBSSID = await _connectivity.getWifiBSSID(); } on PlatformException catch (e) { print(e.toString()); wifiBSSID = "Failed to get Wifi BSS

我正在通过蓝牙设置物联网设备。为此,我需要从我的用户那里获取Wifi详细信息。为简单起见,我想根据连接级别获得一个网络列表。

如果您正在查找连接详细信息,请查看:

以下是如何查找当前SSID的方法:

try {
  wifiBSSID = await _connectivity.getWifiBSSID();
} on PlatformException catch (e) {
  print(e.toString());
  wifiBSSID = "Failed to get Wifi BSSID";
}

另一种选择是库,但到目前为止,它在iOS上的功能非常有限。

如果您正在查找连接详细信息,请查看:

以下是如何查找当前SSID的方法:

try {
  wifiBSSID = await _connectivity.getWifiBSSID();
} on PlatformException catch (e) {
  print(e.toString());
  wifiBSSID = "Failed to get Wifi BSSID";
}

另一种选择是程序库,但到目前为止,它在iOS上的功能非常有限。

您是否查看过这样的程序包:您是否查看过这样的程序包:这就是我最终使用的程序包。抓取SSID是目前你在这个颤振上所能做的一切。这就是我最终用来做这个的。抓取SSID是目前你能做的一切。