flutter_keepscreenon

A package can help you to keep the device's screen on programmatically without any permission.


Keywords
flutter, keepawake, plugin, screen
License
MIT

Documentation

flutter_keepscreenon

pub package

A package can help you to keep the device's screen on programmatically without any permission.

Getting Started

Installation

Add this to your pubspec.yaml (or create it):

dependencies:
  flutter_keepscreenon: any

Then run the flutter tooling:

flutter packages get

Example

try {
  await FlutterKeepscreenon.keepScreenOn(true);
} on PlatformException catch (e) {
  print(e);
}

Details in example/ folder.