Home
last modified time | relevance | path

Searched refs:barStyle (Results 1 – 25 of 49) sorted by relevance

12

/expo/packages/expo-navigation-bar/plugin/src/__tests__/
H A DwithNavigationBar-test.ts22 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 DStatusBar-test.native.tsx23 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 DExpoStatusBar.ios.js11 const barStyle = styleToBarStyle(style, colorScheme);
12 …return (React.createElement(StatusBar, { barStyle: barStyle, animated: animated, hidden: hidden, n… property
H A DExpoStatusBar.android.js12 const barStyle = styleToBarStyle(style, colorScheme);
19 …return (React.createElement(StatusBar, { translucent: translucent, barStyle: barStyle, backgroundC… property
H A DExpoStatusBar.ios.js.map1 …eColorScheme();\n const barStyle = styleToBarStyle(style, colorScheme);\n\n return (\n <Statu…
H A DExpoStatusBar.android.js.map1barStyle = styleToBarStyle(style, colorScheme);\n\n // If translucent and no backgroundColor is p…
H A DStatusBar.types.js.map1 …rty changes should be\n * animated. Supported for `backgroundColor`, `barStyle` and `hidden`.\n …
/expo/home/components/
H A DThemedStatusBar.tsx11 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 DwithNavigationBar.ts29 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 DwithNavigationBar.js44 barStyle: config.androidNavigationBar?.barStyle property
45 ? LEGACY_BAR_STYLE_MAP[config.androidNavigationBar?.barStyle]
74barStyle: 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 DwithNavigationBar.d.ts7 barStyle?: NavigationBarButtonStyle | null;
21 export declare function setNavigationBarStyles({ backgroundColor, barStyle }: Pick<Props, 'backgrou…
/expo/packages/expo-status-bar/src/
H A DExpoStatusBar.ios.tsx18 const barStyle = styleToBarStyle(style, colorScheme);
22 barStyle={barStyle}
H A DExpoStatusBar.android.tsx23 const barStyle = styleToBarStyle(style, colorScheme);
35 barStyle={barStyle}
/expo/packages/@expo/prebuild-config/src/plugins/unversioned/expo-navigation-bar/__tests__/
H A DwithAndroidNavigationBar-test.ts33 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 DStatusBar-test.ts19 expect(getStatusBarStyle({ androidStatusBar: { barStyle: 'dark-content' } })).toMatch(
33 androidStatusBar: { backgroundColor: '#654321', barStyle: 'dark-content' },
/expo/packages/expo-router/node/
H A DgetExpoConstantsManifest.js61 const barStyle = webManifest.barStyle || DEFAULT_STATUS_BAR;
111 barStyle,
/expo/packages/@expo/config-types/src/
H A DExpoConfig.ts112 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 DExpoConfig.d.ts110 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 DStatusBar.d.ts64 barStyle?: null | StatusBarStyle | undefined; property
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/Libraries/Components/StatusBar/
H A DStatusBar.d.ts64 barStyle?: null | StatusBarStyle | undefined; property
/expo/home/navigation/
H A DBottomTabNavigator.android.ts18 barStyle: {
/expo/packages/@expo/prebuild-config/src/plugins/unversioned/expo-navigation-bar/
H A DwithAndroidNavigationBar.ts88 return config.androidNavigationBar?.barStyle || 'light-content';
/expo/packages/@expo/config-plugins/src/android/
H A DStatusBar.ts106 return config.androidStatusBar?.barStyle || 'light-content';
/expo/packages/@expo/prebuild-config/build/plugins/unversioned/expo-navigation-bar/
H A DwithAndroidNavigationBar.js78 … || _config$androidNaviga3 === void 0 ? void 0 : _config$androidNaviga3.barStyle) || 'light-conten…
/expo/packages/@expo/config-plugins/build/android/
H A DStatusBar.js121 … || _config$androidStatus4 === void 0 ? void 0 : _config$androidStatus4.barStyle) || 'light-conten…

12