Home
last modified time | relevance | path

Searched refs:setRootViewBackgroundColor (Results 1 – 11 of 11) sorted by relevance

/expo/packages/expo-system-ui/plugin/src/__tests__/
H A DwithIosRootViewBackgroundColor-test.ts1 import { setRootViewBackgroundColor } from '../withIosRootViewBackgroundColor';
3 describe(setRootViewBackgroundColor, () => {
6 setRootViewBackgroundColor({ backgroundColor: 'dodgerblue' }, {}).RCTRootViewBackgroundColor
9 setRootViewBackgroundColor({ backgroundColor: '#fff000' }, {}).RCTRootViewBackgroundColor
13 expect(() => setRootViewBackgroundColor({ backgroundColor: 'bacon' }, {})).toThrow();
17 setRootViewBackgroundColor({}, { RCTRootViewBackgroundColor: 0xfff000 })
/expo/packages/@expo/prebuild-config/src/plugins/unversioned/expo-system-ui/__tests__/
H A DwithIosRootViewBackgroundColor-test.ts2 setRootViewBackgroundColor,
25 describe(setRootViewBackgroundColor, () => {
28 setRootViewBackgroundColor({ backgroundColor: 'dodgerblue' }, {}).RCTRootViewBackgroundColor
31 setRootViewBackgroundColor({ backgroundColor: '#fff000' }, {}).RCTRootViewBackgroundColor
35 expect(() => setRootViewBackgroundColor({ backgroundColor: 'bacon' }, {})).toThrow();
39 setRootViewBackgroundColor({}, { RCTRootViewBackgroundColor: 0xfff000 })
/expo/packages/expo-system-ui/plugin/build/
H A DwithIosRootViewBackgroundColor.js6 exports.getRootViewBackgroundColor = exports.setRootViewBackgroundColor = exports.withIosRootViewBa…
15 config.modResults = setRootViewBackgroundColor(config, config.modResults);
21 function setRootViewBackgroundColor(config, infoPlist) { function
37 exports.setRootViewBackgroundColor = setRootViewBackgroundColor;
H A DwithIosRootViewBackgroundColor.d.ts4 export declare function setRootViewBackgroundColor(config: Pick<ExpoConfig, 'backgroundColor' | 'io… function
/expo/packages/@expo/prebuild-config/build/plugins/unversioned/expo-system-ui/
H A DwithIosRootViewBackgroundColor.js7 exports.setRootViewBackgroundColor = setRootViewBackgroundColor;
41 config.modResults = setRootViewBackgroundColor(config, config.modResults);
65 function setRootViewBackgroundColor(config, infoPlist) { function
H A DwithIosRootViewBackgroundColor.d.ts7 export declare function setRootViewBackgroundColor(config: Pick<ExpoConfig, 'backgroundColor' | 'io…
H A DwithIosRootViewBackgroundColor.js.map1setRootViewBackgroundColor","warnSystemUIMissing","exports","sdkVersion","semver","lt","background…
/expo/packages/expo-system-ui/plugin/src/
H A DwithIosRootViewBackgroundColor.ts13 config.modResults = setRootViewBackgroundColor(config, config.modResults);
19 export function setRootViewBackgroundColor( function
/expo/packages/@expo/prebuild-config/src/plugins/unversioned/expo-system-ui/
H A DwithIosRootViewBackgroundColor.ts15 config.modResults = setRootViewBackgroundColor(config, config.modResults);
47 export function setRootViewBackgroundColor( function
/expo/android/expoview/src/main/java/host/exp/exponent/utils/
H A DExperienceActivityUtils.kt301 fun setRootViewBackgroundColor(manifest: Manifest, rootView: View) { in <lambda>() method
/expo/android/expoview/src/main/java/host/exp/exponent/experience/
H A DReactNativeActivity.kt218 ExperienceActivityUtils.setRootViewBackgroundColor(manifest!!, rootView) in <lambda>()