wifi_scan_windows 0.0.3 copy "wifi_scan_windows: ^0.0.3" to clipboard
wifi_scan_windows: ^0.0.3 copied to clipboard

PlatformWindows

Flutter plugin to scan for nearby visible WiFi access points in windows

wifi_scan_windows #

pub package

This plugin allows Flutter apps to scan for nearby visible WiFi access points in Windows.

Windows
Support Windows 10+

Usage #

To use this plugin, add wifi_scan_windows as a dependency in your pubspec.yaml file.

Start scan #

You can trigger full WiFi scan with performScan API, as shown below:

void _scan() async {
  WifiScanWindows _wifiScanWindowsPlugin = WifiScanWindows();
  // start full scan async-ly
  _wifiScanWindowsPlugin.performScan((data) async {
    // scan completed 
  }, (error) {
    // scan completed with error
  });
}

Get scanned results #

You can get scanned results with getAvailableNetworks API, as shown below:

NOTE: This API can also be used separately which retrieves the list of available networks on a wireless LAN interface.

void _getAvailableNetworks() async {
  // get scanned results
  List<AvailableNetwork>? result = await _wifiScanWindowsPlugin.getAvailableNetworks();
  
}

Issues and feedback #

Please file WiFiFlutter specific issues, bugs, or feature requests in our issue tracker.

5
likes
130
points
33
downloads

Publisher

verified publisherdregmorr.com

Weekly Downloads

Flutter plugin to scan for nearby visible WiFi access points in windows

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on wifi_scan_windows