Skip to content
This repository has been archived by the owner on Jul 6, 2020. It is now read-only.

Latest commit

 

History

History
34 lines (23 loc) · 681 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 681 Bytes

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.