creativecreatorormaybenot
Committed by GitHub

Add supported platforms (#84)

# Wakelock [![GitHub stars](https://img.shields.io/github/stars/creativecreatorormaybenot/wakelock.svg)](https://github.com/creativecreatorormaybenot/wakelock) [![Pub version](https://img.shields.io/pub/v/wakelock.svg)](https://pub.dev/packages/wakelock) [![Twitter Follow](https://img.shields.io/twitter/follow/creativemaybeno?label=Follow&style=social)](https://twitter.com/creativemaybeno)
Wakelock is Flutter plugin that allows you to keep the device screen awake, i.e. prevent the screen from sleeping on Android, iOS, and web.
Wakelock is Flutter plugin that allows you to keep the device screen awake, i.e. prevent the screen from sleeping.
## Supported platforms
| Platform | `wakelock` support |
| :------- | :----------------: |
| Android | ✅ |
| iOS | ✅ |
| Web | ✅ |
| macOS | ⚒ work in progress |
| Windows | ❎ planned |
| Linux | ❎ planned |
## Getting started
... ...
## 0.3.0-nullsafety.3
* Add supported platforms to README.
## 0.3.0-nullsafety.2
* Indicated that no permissions are required for using the `wakelock` plugin in the README.
... ...
# wakelock [![Pub version](https://img.shields.io/pub/v/wakelock.svg)](https://pub.dev/packages/wakelock) [![GitHub stars](https://img.shields.io/github/stars/creativecreatorormaybenot/wakelock.svg)](https://github.com/creativecreatorormaybenot/wakelock) [![Twitter Follow](https://img.shields.io/twitter/follow/creativemaybeno?label=Follow&style=social)](https://twitter.com/creativemaybeno)
Plugin that allows you to keep the device screen awake, i.e. prevent the screen from sleeping on
Android, iOS, and web.
Plugin that allows you to keep the device screen awake, i.e. prevent the screen from sleeping
---
The plugin allows you to enable and toggle the screen wakelock on Android, iOS, and web, which
prevents the screen from turning off automatically.
The plugin allows you to enable and toggle the screen wakelock, which prevents the screen from turning off automatically.
Essentially, this allows you to keep the device awake, i.e. prevent the device from sleeping.
## Supported platforms
| Platform | `wakelock` support |
| :------- | :----------------: |
| Android | ✅ |
| iOS | ✅ |
| Web | ✅ |
| macOS | ⚒ work in progress |
| Windows | ❎ planned |
| Linux | ❎ planned |
## Usage
To use this plugin, follow the [installing guide](https://pub.dev/packages/wakelock/install).
The `wakelock` plugin **does not require any special *permissions*** on any platform :)
This is because it only enables the *screen wakelock* and not any partial (CPU) wakelocks that would keep the app alive in the background.
The `wakelock` plugin **does not require any special _permissions_** on any platform :)
This is because it only enables the _screen wakelock_ and not any partial (CPU) wakelocks that would keep the app alive in the background.
### Implementation
... ...
... ... @@ -2,7 +2,7 @@ name: wakelock
description: >-2
Plugin that allows you to keep the device screen awake, i.e. prevent the screen from sleeping on
Android, iOS, and web.
version: 0.3.0-nullsafety.2
version: 0.3.0-nullsafety.3
homepage: https://github.com/creativecreatorormaybenot/wakelock/tree/master/wakelock
environment:
... ...