UNPKG

react-native-bars

Version:

Components to control your app status and navigation bars.

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