An open API service indexing awesome lists of open source software.

https://github.com/ajinasokan/wifi_access

A Flutter plugin to get WiFi related functions.
https://github.com/ajinasokan/wifi_access

Last synced: 4 months ago
JSON representation

A Flutter plugin to get WiFi related functions.

Awesome Lists containing this project

README

        

# wifi_access

A Flutter plugin to get WiFi related functions. This project uses snippets from [wifi_ip](https://github.com/luanvotrongdev/wifi_ip) project but targeting only android and adds gateway IP to the result.

## Getting Started

You will need the following permission in android:

```xml

```

You can access WiFi information in your Flutter project like this:

```dart
import 'package:wifi_access/wifi_access.dart';

DHCP dhcp = await WifiAccess.dhcp;
print(dhcp.ip);
print(dhcp.gateway);
```