How to use the expo-brightness.getBrightnessAsync function in expo-brightness

To help you get started, we’ve selected a few expo-brightness examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github janaagaard75 / expo-and-typescript / src / BrightnessScreen.tsx View on Github external
private async updateBrightness() {
    this.setState({
      normalBrightness: await Brightness.getBrightnessAsync(),
      systemBrightness: await Brightness.getSystemBrightnessAsync()
    });
  }
}
github byCedric / use-expo / packages / brightness / src / use-brightness.ts View on Github external
function getBrightness() {
		return getBrightnessAsync().then(setData);
	}