UNPKG

expo-status-bar

Version:

Provides the same interface as the React Native StatusBar API, but with slightly different defaults to work great in Expo environments.

6 lines (4 loc) 202 B
import { StatusBar } from 'react-native'; export default function setStatusBarBackgroundColor(backgroundColor: string, animated: boolean) { StatusBar.setBackgroundColor(backgroundColor, animated); }