Skip to main content

Brightness

The Brightness plugin let you control the display brightness of your device.

Requires Cordova plugin: cordova-plugin-brightness. For more info, please see the Brightness plugin docs.

https://github.com/mgcrea/cordova-plugin-brightness

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-brightness
$ npm install @ionic-native/brightness
$ ionic cap sync

Supported Platforms#

  • Android
  • iOS

Usage#

React#

Learn more about using Ionic Native components in React

Angular#

import { Brightness } from '@ionic-native/brightness/ngx';
constructor(private brightness: Brightness) { }
...
let brightnessValue = 0.8;
this.brightness.setBrightness(brightnessValue);