React hook that notifies when the battery crosses the low-level threshold.
Compatibility:
function LowBatteryBanner() { const level = useBatteryLevelIsLow(); if (level == null) { return null; } return <Banner title={`Battery low (${Math.round(level * 100)}%)`} />;} Copy
function LowBatteryBanner() { const level = useBatteryLevelIsLow(); if (level == null) { return null; } return <Banner title={`Battery low (${Math.round(level * 100)}%)`} />;}
React hook that notifies when the battery crosses the low-level threshold.
Compatibility:
