Skip to main content

Backlight

This plugin adds turning on/off the device backlight.

https://github.com/mebibou/cordova-plugin-backlight

Stuck on a Cordova issue?

Don't waste precious time on plugin issues.

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.

Installation#

$ npm install cordova-plugin-backlight
$ npm install @ionic-native/backlight
$ ionic cap sync

Supported Platforms#

  • Android

Usage#

React#

Learn more about using Ionic Native components in React

Angular#

import { Backlight } from '@ionic-native/backlight/ngx';
constructor(private backlight: Backlight) { }
...
// Turn backlight on
this.backlight.on().then(() => console.log('backlight on'));
// Turn backlight off
this.backlight.off().then(() => console.log('backlight off'));