wifluttings

Redirect your Flutter application to the Native WiFi Settings.


Keywords
android, flutter, flutter-plugin, ios, native, settings, wifi
License
Apache-2.0

Documentation

wifluttings

Redirect your Flutter application to the Native WiFi Settings.

Version

Features

  • Open the Native Wifi Settings on:
    • Android
    • iOS

Preview

preview

Getting Started

First, you need add wifluttings in the dependencies list:

dependencies:
  wifluttings: 0.1.3    

Then, you will need import the class:

import 'package:wifluttings/wifluttings.dart';

Finally, you could redirect your application to the Native WiFi Settings with:

Wifluttings.openNativeWifiSettings;

if you need check if the settings was opened, you could check the wifluttings response like:

bool settingsWasOpened = await Wifluttings.openNativeWifiSettings;