Skip to content

jeremyko/flutter-proximity-sensor-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ed741a0 · Mar 4, 2025

History

62 Commits
Aug 22, 2023
Feb 9, 2025
Feb 8, 2025
Mar 4, 2025
Feb 8, 2025
Mar 4, 2025
Jul 1, 2024
Mar 24, 2021
Mar 4, 2025
Mar 26, 2021
Oct 9, 2024
Aug 22, 2023
Mar 4, 2025
Mar 4, 2025

Repository files navigation

proximity_sensor

https://pub.dev/packages/proximity_sensor

simple and easy to use flutter plugin package for proximity sensor (only)

Getting started

In the pubspec.yaml of your flutter project, add the following dependency:

dependencies:
  ...
  proximity_sensor:

In your library add the following import:

import 'package:proximity_sensor/proximity_sensor.dart';

Note

Android 12 and higher are required to specify an explicit value for android:exported
This is an example.

<activity
    android:exported="true"
    ....

(Android only) WAKE_LOCK permission is needed if you run setProximityScreenOff(true) before listening to events

Add below permission in your AndroidManifest.xml file.

<uses-permission android:name="android.permission.WAKE_LOCK"/>

Some recent devices use virtual proximity sensors. There are no physical sensors. I found it hard to trust the sensor information in this case.