react-native-device-info - v15.0.1
    Preparing search index...

    Function useBatteryLevel

    • React hook that streams battery level updates emitted by the native module.

      Compatibility: iOS ✅ Android ✅ Windows ✅ Web ✅ visionOS ✅

      Returns number | null

      function BatteryIndicator() {
      const level = useBatteryLevel();
      return <Text>{level ?? 'unknown'}%</Text>;
      }