Created
July 1, 2019 17:57
-
-
Save isacjunior/a3da7f2392c8a7c2bc4dc4b5ee7271a3 to your computer and use it in GitHub Desktop.
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 characters
import { StatusBar, StatusBarStyle } from 'react-native' | |
import { useEffect } from 'react' | |
function useStatusBar(style: StatusBarStyle) { | |
useEffect(() => { | |
StatusBar.setBarStyle(style, true) | |
}, []) | |
} | |
export default useStatusBar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment