| /expo/packages/expo-navigation-bar/plugin/src/__tests__/ |
| H A D | withNavigationBar-test.ts | 22 barStyle: undefined, 35 barStyle: 'light-content', 39 barStyle: 'light', 54 barStyle: 'light-content', 69 barStyle: 'dark', 79 barStyle: 'dark', 96 barStyle: 'dark', 213 barStyle: 'dark', 225 barStyle: 'dark-content', 236 { backgroundColor: '#111111', barStyle: 'dark' },
|
| /expo/packages/expo-status-bar/src/__tests__/ |
| H A D | StatusBar-test.native.tsx | 23 expect(renderedPropValue(<ExpoStatusBar style="auto" />, 'barStyle')).toBe('light-content'); 29 expect(renderedPropValue(<ExpoStatusBar style="auto" />, 'barStyle')).toBe('dark-content'); 35 expect(renderedPropValue(<ExpoStatusBar style="inverted" />, 'barStyle')).toBe( 43 expect(renderedPropValue(<ExpoStatusBar style="inverted" />, 'barStyle')).toBe( 50 expect(renderedPropValue(<ExpoStatusBar style="light" />, 'barStyle')).toBe('light-content'); 51 expect(renderedPropValue(<ExpoStatusBar style="dark" />, 'barStyle')).toBe('dark-content');
|
| /expo/packages/expo-status-bar/build/ |
| H A D | ExpoStatusBar.ios.js | 11 const barStyle = styleToBarStyle(style, colorScheme); 12 …return (React.createElement(StatusBar, { barStyle: barStyle, animated: animated, hidden: hidden, n… property
|
| H A D | ExpoStatusBar.android.js | 12 const barStyle = styleToBarStyle(style, colorScheme); 19 …return (React.createElement(StatusBar, { translucent: translucent, barStyle: barStyle, backgroundC… property
|
| H A D | ExpoStatusBar.ios.js.map | 1 …eColorScheme();\n const barStyle = styleToBarStyle(style, colorScheme);\n\n return (\n <Statu…
|
| H A D | ExpoStatusBar.android.js.map | 1 …barStyle = styleToBarStyle(style, colorScheme);\n\n // If translucent and no backgroundColor is p…
|
| H A D | StatusBar.types.js.map | 1 …rty changes should be\n * animated. Supported for `backgroundColor`, `barStyle` and `hidden`.\n …
|
| /expo/home/components/ |
| H A D | ThemedStatusBar.tsx | 11 const barStyle = theme.dark ? 'light-content' : 'dark-content'; 16 StatusBar.setBarStyle(barStyle); 19 return <StatusBar barStyle={barStyle} backgroundColor={expoTheme.background.default} />;
|
| /expo/packages/expo-navigation-bar/plugin/src/ |
| H A D | withNavigationBar.ts | 29 barStyle?: NavigationBarButtonStyle | null; 77 barStyle: config.androidNavigationBar?.barStyle 78 ? LEGACY_BAR_STYLE_MAP[config.androidNavigationBar?.barStyle] 110 barStyle: Object.entries(LEGACY_BAR_STYLE_MAP).find( 111 ([, v]) => v === props.barStyle 214 { backgroundColor, barStyle }: Pick<Props, 'backgroundColor' | 'barStyle'>, 227 add: barStyle === 'dark',
|
| /expo/packages/expo-navigation-bar/plugin/build/ |
| H A D | withNavigationBar.js | 44 barStyle: config.androidNavigationBar?.barStyle property 45 ? LEGACY_BAR_STYLE_MAP[config.androidNavigationBar?.barStyle] 74 … barStyle: Object.entries(LEGACY_BAR_STYLE_MAP).find(([, v]) => v === props.barStyle)?.[0], property 146 function setNavigationBarStyles({ backgroundColor, barStyle }, styles) { 156 add: barStyle === 'dark',
|
| H A D | withNavigationBar.d.ts | 7 barStyle?: NavigationBarButtonStyle | null; 21 export declare function setNavigationBarStyles({ backgroundColor, barStyle }: Pick<Props, 'backgrou…
|
| /expo/packages/expo-status-bar/src/ |
| H A D | ExpoStatusBar.ios.tsx | 18 const barStyle = styleToBarStyle(style, colorScheme); 22 barStyle={barStyle}
|
| H A D | ExpoStatusBar.android.tsx | 23 const barStyle = styleToBarStyle(style, colorScheme); 35 barStyle={barStyle}
|
| /expo/packages/@expo/prebuild-config/src/plugins/unversioned/expo-navigation-bar/__tests__/ |
| H A D | withAndroidNavigationBar-test.ts | 33 expect(getNavigationBarStyle({ androidNavigationBar: { barStyle: 'dark-content' } })).toMatch( 55 { androidNavigationBar: { backgroundColor: '#111111', barStyle: 'dark-content' } }, 69 { androidNavigationBar: { backgroundColor: '#111111', barStyle: 'dark-content' } },
|
| /expo/packages/@expo/config-plugins/src/android/__tests__/ |
| H A D | StatusBar-test.ts | 19 expect(getStatusBarStyle({ androidStatusBar: { barStyle: 'dark-content' } })).toMatch( 33 androidStatusBar: { backgroundColor: '#654321', barStyle: 'dark-content' },
|
| /expo/packages/expo-router/node/ |
| H A D | getExpoConstantsManifest.js | 61 const barStyle = webManifest.barStyle || DEFAULT_STATUS_BAR; 111 barStyle,
|
| /expo/packages/@expo/config-types/src/ |
| H A D | ExpoConfig.ts | 112 barStyle?: 'light-content' | 'dark-content'; 143 barStyle?: 'light-content' | 'dark-content'; 854 barStyle?: 'default' | 'black' | 'black-translucent'; property
|
| /expo/packages/@expo/config-types/build/ |
| H A D | ExpoConfig.d.ts | 110 barStyle?: 'light-content' | 'dark-content'; 141 barStyle?: 'light-content' | 'dark-content'; 842 barStyle?: 'default' | 'black' | 'black-translucent'; property
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/Libraries/Components/StatusBar/ |
| H A D | StatusBar.d.ts | 64 barStyle?: null | StatusBarStyle | undefined; property
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/Libraries/Components/StatusBar/ |
| H A D | StatusBar.d.ts | 64 barStyle?: null | StatusBarStyle | undefined; property
|
| /expo/home/navigation/ |
| H A D | BottomTabNavigator.android.ts | 18 barStyle: {
|
| /expo/packages/@expo/prebuild-config/src/plugins/unversioned/expo-navigation-bar/ |
| H A D | withAndroidNavigationBar.ts | 88 return config.androidNavigationBar?.barStyle || 'light-content';
|
| /expo/packages/@expo/config-plugins/src/android/ |
| H A D | StatusBar.ts | 106 return config.androidStatusBar?.barStyle || 'light-content';
|
| /expo/packages/@expo/prebuild-config/build/plugins/unversioned/expo-navigation-bar/ |
| H A D | withAndroidNavigationBar.js | 78 … || _config$androidNaviga3 === void 0 ? void 0 : _config$androidNaviga3.barStyle) || 'light-conten…
|
| /expo/packages/@expo/config-plugins/build/android/ |
| H A D | StatusBar.js | 121 … || _config$androidStatus4 === void 0 ? void 0 : _config$androidStatus4.barStyle) || 'light-conten…
|