Last active
July 2, 2024 19:40
-
-
Save ecklf/dc8dee4e1c9b8cd8011199416176fb3e to your computer and use it in GitHub Desktop.
Revisions
-
ecklf revised this gist
Aug 3, 2021 . 1 changed file with 8 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,12 +1,19 @@ import { useEffect, useState } from "react"; import { NativeEventEmitter, NativeModules, Platform, StatusBar, } from "react-native"; const { StatusBarManager } = NativeModules; export default function useStatusBarHeight() { const [value, setValue] = useState(StatusBar.currentHeight || 0); useEffect(() => { if (Platform.OS !== "ios") return; const emitter = new NativeEventEmitter(StatusBarManager); StatusBarManager.getHeight(({ height }: { height: number }) => { -
ecklf revised this gist
Aug 3, 2021 . No changes.There are no files selected for viewing
-
ecklf created this gist
Aug 3, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ import { useEffect, useState } from "react"; import { NativeEventEmitter, NativeModules, StatusBar } from "react-native"; const { StatusBarManager } = NativeModules; export default function useStatusBarHeight() { const [value, setValue] = useState(StatusBar.currentHeight || 0); useEffect(() => { const emitter = new NativeEventEmitter(StatusBarManager); StatusBarManager.getHeight(({ height }: { height: number }) => { setValue(height); }); const listener = emitter.addListener("statusBarFrameWillChange", (data) => setValue(data.frame.height), ); return () => listener.remove(); }, []); return value; }