How to use the expo-brightness.useSystemBrightnessAsync 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 dodie / tracing-paper-sketching / App.js View on Github external
_brightness = async () => {
    if (!this.state.brightness) {
      await Brightness.setBrightnessAsync(1);
    } else {
      await Brightness.useSystemBrightnessAsync();
    }
    this.state.brightness ? this.setState({ brightness: false }) : this.setState({ brightness: true });
  }