0 purchases
wifi access
wifi_access #
A Flutter plugin to get WiFi related functions. This project uses snippets from wifi_ip project but targeting only android and adds gateway IP to the result.
Getting Started #
You will need the following permission in android:
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
copied to clipboard
You can access WiFi information in your Flutter project like this:
import 'package:wifi_access/wifi_access.dart';
DHCP dhcp = await WifiAccess.dhcp;
print(dhcp.ip);
print(dhcp.gateway);
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.