Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React native Wifi list

Is there a way to scan and all get Wifi list using react native for Android and iOS. I have seen a few libraries but mostly for android and even those doesnt work properly. Any suggestions?

If I need to write Native Modules can you point me to right direction. Never wrote a native module for React Native before.

like image 330
Vinay Avatar asked Feb 01 '18 21:02

Vinay


1 Answers

https://www.npmjs.com/package/react-native-wifi-reborn Has method loadWifiList() gives Promise<Array<WifiEntry>>

Also you want to forcefully rescan : method reScanAndLoadWifiList() gives Promise<Array<string>>

like image 109
Sagar Gala Avatar answered Sep 21 '22 14:09

Sagar Gala