A Flutter plugin allows you to check the status of Airplane Mode on iOS and Android mobile.
Find the example wiring in the example app
Add the following line to pubspec.yaml
:
dependencies:
airplane_mode_checker: ^1.0.4
Add the following import to your Dart code:
import 'package:airplane_mode_checker/airplane_mode_checker.dart';
In order to check the airplane mode, use AirplaneModeChecker.checkAirplaneMode()
as below.
You will get the return AirplaneModeStatus
:
AirplaneModeStatus.on
AirplaneModeStatus.off
final status = await AirplaneModeChecker.checkAirplaneMode();
iOS is available from version 12
@available(iOS 12.0, *)
AirplaneMode: ON
AirplaneMode: OFF
Please file issues to send feedback or report a bug. Thank you!
MIT License