Home
last modified time | relevance | path

Searched refs:getPrimaryColor (Results 1 – 18 of 18) sorted by relevance

/expo/packages/@expo/config-plugins/build/android/
H A DPrimaryColor.js6 exports.getPrimaryColor = getPrimaryColor;
41 value: getPrimaryColor(config)
50 add: !!getPrimaryColor(config),
59 function getPrimaryColor(config) { function
H A DPrimaryColor.d.ts6 export declare function getPrimaryColor(config: Pick<ExpoConfig, 'primaryColor'>): string; function
H A DPrimaryColor.js.map1getPrimaryColor","withAndroidStyles","assignStylesValue","add","parent","getAppThemeLightNoActionB…
/expo/packages/@expo/config-plugins/src/android/__tests__/
H A DPrimaryColor-test.ts5 import { getPrimaryColor, withPrimaryColorColors, withPrimaryColorStyles } from '../PrimaryColor';
11 expect(getPrimaryColor({})).toBe('#023c69');
15 expect(getPrimaryColor({ primaryColor: '#111111' })).toMatch('#111111');
19 expect(getPrimaryColor({ primaryColor: '' })).toMatch('');
/expo/packages/@expo/config-plugins/src/android/
H A DPrimaryColor.ts21 value: getPrimaryColor(config),
30 add: !!getPrimaryColor(config),
39 export function getPrimaryColor(config: Pick<ExpoConfig, 'primaryColor'>) { function
/expo/packages/expo-dev-launcher/android/src/test/java/expo/modules/devlauncher/launcher/manifest/
H A DDevLauncherManifestTest.kt26 Truth.assertThat(manifestObj.getPrimaryColor()).isEqualTo("#cccccc") in checks if fromJson can parse manifest()
H A DDevLauncherManifestParserTest.kt173 Truth.assertThat(manifest.getPrimaryColor()).isEqualTo("#cccccc") in <lambda>()
/expo/packages/expo-dev-launcher/android/src/main/java/expo/modules/devlauncher/launcher/configurators/
H A DDevLauncherExpoActivityConfigurator.kt30 if (!isValidColor(manifest.getPrimaryColor())) { in <lambda>()
33 val color = Color.parseColor(manifest.getPrimaryColor()) in <lambda>()
/expo/android/expoview/src/main/java/versioned/host/exp/exponent/modules/api/components/picker/
H A DReactPickerManager.java84 adapter.setPrimaryTextColor(view.getPrimaryColor()); in setItems()
136 adapter.setPrimaryTextColor(view.getPrimaryColor()); in setNumberOfLines()
H A DReactPicker.java260 public @Nullable Integer getPrimaryColor() { in getPrimaryColor() method in ReactPicker
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/host/exp/exponent/modules/api/components/picker/
H A DReactPickerManager.java84 adapter.setPrimaryTextColor(view.getPrimaryColor()); in setItems()
136 adapter.setPrimaryTextColor(view.getPrimaryColor()); in setNumberOfLines()
H A DReactPicker.java260 public @Nullable Integer getPrimaryColor() { in getPrimaryColor() method in ReactPicker
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/host/exp/exponent/modules/api/components/picker/
H A DReactPickerManager.java84 adapter.setPrimaryTextColor(view.getPrimaryColor()); in setItems()
136 adapter.setPrimaryTextColor(view.getPrimaryColor()); in setNumberOfLines()
H A DReactPicker.java260 public @Nullable Integer getPrimaryColor() { in getPrimaryColor() method in ReactPicker
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/host/exp/exponent/modules/api/components/picker/
H A DReactPickerManager.java84 adapter.setPrimaryTextColor(view.getPrimaryColor()); in setItems()
136 adapter.setPrimaryTextColor(view.getPrimaryColor()); in setNumberOfLines()
H A DReactPicker.java260 public @Nullable Integer getPrimaryColor() { in getPrimaryColor() method in ReactPicker
/expo/packages/expo-manifests/android/src/main/java/expo/modules/manifests/core/
H A DManifest.kt129 fun getPrimaryColor(): String? { in updateJSON() method in expo.modules.manifests.core.Manifest
/expo/android/expoview/src/main/java/host/exp/exponent/
H A DExponentManifest.kt138 val colorString = manifest.getPrimaryColor() in getColorFromManifest()