screen 0.0.2 copy "screen: ^0.0.2" to clipboard
screen: ^0.0.2 copied to clipboard

outdatedDart 1 only

A Flutter plugin to manage the device's screen on Android and iOS.

Screen #

A Flutter plugin to manage the device's screen on Android and iOS.

Usage #

To use this plugin, add screen as a dependency in your pubspec.yaml file.

Make sure you add the following permissions to your Android Manifest

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

Example #

// Import package
import 'package:screen/screen.dart';

// Get the current brightness:
double brightness = await Screen.brightness;

// Set the brightness:
Screen.setBrightness(0.5);

// Prevent screen from going into sleep mode:
Screen.keepOn(true);
121
likes
0
pub points
91%
popularity

Publisher

unverified uploader

A Flutter plugin to manage the device's screen on Android and iOS.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on screen