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.

9 lines (8 loc) 721 B
import { StatusBarProps, StatusBarAnimation, StatusBarStyle } from 'react-native'; import StatusBar from './ExpoStatusBar'; declare const setBackgroundColor: (color: string, animated?: boolean | undefined) => void; declare const setBarStyle: (style: StatusBarStyle, animated?: boolean | undefined) => void; declare const setHidden: (hidden: boolean, animation?: "fade" | "slide" | "none" | undefined) => void; declare const setNetworkActivityIndicatorVisible: (visible: boolean) => void; declare const setTranslucent: (translucent: boolean) => void; export { StatusBar, StatusBarProps, StatusBarAnimation, StatusBarStyle, setBarStyle, setBackgroundColor, setHidden, setNetworkActivityIndicatorVisible, setTranslucent, };