Home
last modified time | relevance | path

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

/expo/packages/expo-system-ui/build/
H A DSystemUI.js13 export async function setBackgroundColorAsync(color) { function
15 return await ExpoSystemUI.setBackgroundColorAsync(null);
19 return await ExpoSystemUI.setBackgroundColorAsync(colorNumber);
H A DSystemUI.js.map1setBackgroundColorAsync(\"black\");\n * ```\n * @param color Any valid [CSS 3 (SVG) color](http://…
H A DExpoSystemUI.web.d.ts4 setBackgroundColorAsync(color: string | null): void; constant
H A DSystemUI.d.ts12 export declare function setBackgroundColorAsync(color: ColorValue | null): Promise<void>; function
H A DExpoSystemUI.web.js16 setBackgroundColorAsync(color) {
H A DExpoSystemUI.web.js.map1 …kgroundColor);\n } else {\n return null;\n }\n },\n setBackgroundColorAsync(color: st…
/expo/packages/expo-system-ui/src/
H A DSystemUI.ts15 export async function setBackgroundColorAsync(color: ColorValue | null): Promise<void> { function
17 return await ExpoSystemUI.setBackgroundColorAsync(null);
20 return await ExpoSystemUI.setBackgroundColorAsync(colorNumber);
H A DExpoSystemUI.web.ts16 setBackgroundColorAsync(color: string | null) {
/expo/packages/expo-system-ui/ios/ExpoSystemUI/
H A DExpoSystemUIModule.swift16 Self.setBackgroundColorAsync(color: color) in definition()
18 Self.setBackgroundColorAsync(color: nil) in definition()
27 Self.setBackgroundColorAsync(color: color) in definition()
42 static func setBackgroundColorAsync(color: Int?) { in setBackgroundColorAsync() function
/expo/ios/versioned/sdk49/ExpoSystemUI/ExpoSystemUI/
H A DExpoSystemUIModule.swift16 Self.setBackgroundColorAsync(color: color) in definition()
18 Self.setBackgroundColorAsync(color: nil) in definition()
27 Self.setBackgroundColorAsync(color: color) in definition()
42 static func setBackgroundColorAsync(color: Int?) { in setBackgroundColorAsync() function
/expo/ios/versioned/sdk48/ExpoSystemUI/ExpoSystemUI/
H A DExpoSystemUIModule.swift13 Self.setBackgroundColorAsync(color: color) in definition()
21 Self.setBackgroundColorAsync(color: color) in definition()
36 static func setBackgroundColorAsync(color: Int?) { in setBackgroundColorAsync() function
/expo/ios/versioned/sdk47/ExpoSystemUI/ExpoSystemUI/
H A DExpoSystemUIModule.swift13 Self.setBackgroundColorAsync(color: color) in definition()
21 Self.setBackgroundColorAsync(color: color) in definition()
36 static func setBackgroundColorAsync(color: Int?) { in setBackgroundColorAsync() function
/expo/packages/expo-navigation-bar/build/
H A DNavigationBar.js41 export async function setBackgroundColorAsync(color) { function
47 return await ExpoNavigationBar.setBackgroundColorAsync(colorNumber);
H A DNavigationBar.d.ts25 export declare function setBackgroundColorAsync(color: ColorValue): Promise<void>;
H A DNavigationBar.js.map1setBackgroundColorAsync(\"white\");\n * ```\n * @param color Any valid [CSS 3 (SVG) color](http://…
/expo/packages/expo-navigation-bar/src/
H A DNavigationBar.ts55 export async function setBackgroundColorAsync(color: ColorValue): Promise<void> { function
61 return await ExpoNavigationBar.setBackgroundColorAsync(colorNumber);
/expo/apps/test-suite/tests/
H A DSystemUI.js25 setAsync: SystemUI.setBackgroundColorAsync,
H A DNavigationBar.js75 setAsync: NavigationBar.setBackgroundColorAsync,
/expo/apps/native-component-list/src/screens/
H A DSystemUIScreen.tsx31 onPress={() => SystemUI.setBackgroundColorAsync(getRandomColor())}
H A DNavigationBarScreen.tsx90 onPress={() => NavigationBar.setBackgroundColorAsync(getRandomColor())}
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/systemui/
H A DSystemUIModule.kt41 fun setBackgroundColorAsync(color: Int, promise: Promise) { in setBackgroundColorAsync() method
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/navigationbar/
H A DNavigationBarModule.kt48 fun setBackgroundColorAsync(color: Int, promise: Promise) { in <lambda>() method
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/navigationbar/
H A DNavigationBarModule.kt48 fun setBackgroundColorAsync(color: Int, promise: Promise) { in <lambda>() method
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/navigationbar/
H A DNavigationBarModule.kt48 fun setBackgroundColorAsync(color: Int, promise: Promise) { in <lambda>() method
/expo/ios/Exponent/Kernel/Views/
H A DEXAppViewController.m720 // view we set in `expo-system-ui`'s `setBackgroundColorAsync` method.