How to use the expo-brightness.setSystemBrightnessAsync 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
return async () => {
      await Brightness.setSystemBrightnessAsync(value);
      this.updateBrightness();
    };
  }
github expo / expo / docs / static / examples / unversioned / brightness.js View on Github external
(async () => {
      const { status } = await Brightness.requestPermissionsAsync();
      if (status === 'granted') {
        Brightness.setSystemBrightnessAsync(1);
      }
    })();
  }, []);