0 purchases
wifi ip
get_wifi_info #
A flutter plugin to get Wifi IP info.
Getting Started #
Pubspec #
Add to pubspec
get_wifi_info:
git:
url: https://github.com/luanvotrongdev/get_wifi_info.git
copied to clipboard
run pub get
Android #
Add <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> to AndroidManifest
Call API
WifiInfo info;
try {
info = await GetWifiInfo.getWifiInfo;
} on PlatformException {
print('Failed to get broadcast IP.');
}
copied to clipboard
iOS #
Call API
WifiInfo info;
try {
info = await GetWifiInfo.getWifiInfo;
} on PlatformException {
print('Failed to get broadcast IP.');
}
copied to clipboard
Demo #
iOS
Android
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.