Skip to content
forked from once10301/wifi

Same as [once10301/wifi](https://github.com/once10301/wifi), but it connects to new wifi even when wifi is already connected.

License

Notifications You must be signed in to change notification settings

ronram5126/wifi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wifi

This plugin allows Flutter apps to get wifi ssid and list, connect wifi with ssid and password.

This plugin works Android.

iOS later released.

Sample usage to check current status:

import 'package:wifi/wifi.dart';

String ssid = await Wifi.ssid;

//Signal strength, 1-3,The bigger the number, the stronger the signal
int level = await Wifi.level;

String ip = await Wifi.ip;

var result = await Wifi.connection('ssid', 'password');

// only work on Android.
List<WifiResult> list = await Wifi.list('key'); // this key is used to filter

When you use connection on iOS (iOS 11 only)

  1. 'build Phass' -> 'Link Binay With Libraries' add 'NetworkExtension.framework' NetworkExtension

  2. in 'Capabilities' open 'Hotspot Configuration'

    NetworkExtension

  3. If you device is iOS12, in 'Capabilities' open 'Access WiFi Information'

    NetworkExtension

If you want to use Wifi.list on iOS,

reference http://baixin.io/2017/01/iOS_Wifilist/

Getting Started

For help getting started with Flutter, view our online documentation.

For help on editing plugin code, view the documentation.

About

Same as [once10301/wifi](https://github.com/once10301/wifi), but it connects to new wifi even when wifi is already connected.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 59.0%
  • Dart 16.7%
  • Objective-C 15.6%
  • Ruby 8.7%