UNPKG

react-native-bars

Version:

Components to control your app status and navigation bars.

13 lines (9 loc) 262 B
export type SystemBarStyle = "light-content" | "dark-content"; export type StatusBarProps = { animated?: boolean; barStyle: SystemBarStyle; }; export type NavigationBarProps = { barStyle: SystemBarStyle; }; export type SystemBarsProps = StatusBarProps;