Home
last modified time | relevance | path

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

12345678910

/expo/packages/expo-image/build/web/
H A DColorTintFilter.js3 export function getTintColorStyle(tintColor) { argument
4 if (!tintColor) {
8 filter: `url(#expo-image-tint-${tintColor})`,
11 export default function TintColorFilter({ tintColor }) { field
12 if (!tintColor) {
17 …React.createElement("filter", { id: `expo-image-tint-${tintColor}`, x: "0", y: "0", width: "0", he…
18 … React.createElement("feFlood", { floodColor: tintColor, floodOpacity: "1", result: "flood" }),
H A DColorTintFilter.d.ts1 export declare function getTintColorStyle(tintColor?: string | null): {
7 tintColor?: string | null;
9 export default function TintColorFilter({ tintColor }: TintColorFilterProps): JSX.Element | null;
H A DColorTintFilter.js.map1tintColor?: string | null) {\n if (!tintColor) {\n return {};\n }\n return {\n filter: `u…
H A DImageWrapper.js18 … hashPlaceholderContentPosition, priority, style, hashPlaceholderStyle, tintColor, className, acce…
30 React.createElement(ColorTintFilter, { tintColor: tintColor }), property
34 ...getTintColorStyle(tintColor),
/expo/apps/native-component-list/src/screens/Image/
H A DImageTintingScreen.tsx10 description: 'tintColor={null}',
11 tintColor: null,
14 description: 'tintColor="red"',
15 tintColor: 'red',
18 description: 'tintColor={Colors.tintColor}',
19 tintColor: Colors.tintColor,
22 description: 'tintColor="#0002"',
23 tintColor: '#0002',
47 tintColor={example.tintColor}
/expo/apps/native-component-list/src/screens/Image/tests/
H A Dborders.tsx13 borderColor: tintColor,
22 borderColor: tintColor,
31 borderColor: tintColor,
41 borderColor: tintColor,
51 borderColor: tintColor,
66 borderColor: tintColor,
80 borderColor: tintColor,
95 borderColor: tintColor,
106 borderTopColor: tintColor,
154 borderColor: tintColor,
[all …]
H A Dappearance.tsx1 import { tintColor, tintColor2 } from './constants';
52 backgroundColor: tintColor,
75 tintColor,
77 tintColor,
84 tintColor: tintColor2,
86 tintColor: tintColor2,
94 backgroundColor: tintColor,
102 backgroundColor: tintColor,
/expo/packages/expo-image/src/web/
H A DColorTintFilter.tsx4 export function getTintColorStyle(tintColor?: string | null) {
5 if (!tintColor) {
9 filter: `url(#expo-image-tint-${tintColor})`,
13 type TintColorFilterProps = { tintColor?: string | null };
15 export default function TintColorFilter({ tintColor }: TintColorFilterProps) {
16 if (!tintColor) {
22 <filter id={`expo-image-tint-${tintColor}`} x="0" y="0" width="0" height="0">
23 <feFlood floodColor={tintColor} floodOpacity="1" result="flood" />
H A DImageWrapper.tsx35 tintColor,
60 <ColorTintFilter tintColor={tintColor} />
70 ...getTintColorStyle(tintColor),
/expo/home/constants/
H A DColors.ts9 const tintColor = '#4e9bde'; constant
17 tintColor,
42 tabIconSelected: Platform.OS === 'android' ? '#000' : tintColor,
48 tintColor: darkTintColor,
49 darkTintColor: tintColor,
74 tabIconSelected: Platform.OS === 'android' ? '#fff' : tintColor,
H A DThemes.ts13 primary: Colors.light.tintColor,
23 primary: Colors.dark.tintColor,
/expo/apps/native-component-list/src/constants/
H A DColors.ts1 const tintColor = '#4630ec'; constant
4 tintColor,
12 tabIconSelected: tintColor,
/expo/packages/expo-dev-launcher/bundle/components/
H A DAvatar.tsx18 const { backgroundColor, tintColor } = getOrganizationColor(firstLetter);
29 <BuildingIcon resizeMode="center" style={styles.icon} tintColor={tintColor} />
63 return { backgroundColor: palette.light.blue[200], tintColor: palette.light.blue[900] };
65 return { backgroundColor: palette.light.green[200], tintColor: palette.light.green[900] };
67 return { backgroundColor: palette.light.yellow[400], tintColor: palette.light.yellow[900] };
69 return { backgroundColor: palette.light.orange[200], tintColor: palette.light.orange[900] };
71 return { backgroundColor: palette.light.red[200], tintColor: palette.light.red[900] };
73 return { backgroundColor: palette.light.pink[200], tintColor: palette.light.pink[900] };
75 return { backgroundColor: palette.light.purple[200], tintColor: palette.light.purple[900] };
/expo/packages/expo-image/build/
H A DExpoImage.js56 const tintColor = processColor(props.tintColor || resolvedStyle.tintColor);
70 … this.onLoad, onProgress: this.onProgress, onError: this.onError, tintColor: tintColor, borderColo…
/expo/apps/native-component-list/src/screens/
H A DSearchScreen.tsx23 tintColor,
28 tintColor?: string;
49 pressColor={tintColor || '#fff'}
50 tintColor={tintColor}
90 tintColor={Colors.tintColor}
96 tintColor={Colors.tintColor}
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/components/image/
H A DABI48_0_0ImageProps.cpp62 tintColor(
63 CoreFeatures::enablePropIteratorSetter ? sourceProps.tintColor
68 sourceProps.tintColor,
96 RAW_SET_PROP_SWITCH_CASE_BASIC(tintColor, {}); in setProp()
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/components/image/
H A DABI49_0_0ImageProps.cpp62 tintColor(
63 CoreFeatures::enablePropIteratorSetter ? sourceProps.tintColor
68 sourceProps.tintColor,
98 RAW_SET_PROP_SWITCH_CASE_BASIC(tintColor); in setProp()
/expo/ios/vendored/sdk47/react-native-svg/apple/
H A DABI47_0_0RNSVGUIKit.macos.mm23 - (NSColor *)tintColor
29 // To mimic iOS's tintColor, we crawl up the view hierarchy until either:
34 return [(ABI47_0_0RNSVGView *)parentView tintColor];
40 - (void)setTintColor:(NSColor *)tintColor
42 _tintColor = tintColor;
/expo/ios/vendored/sdk48/react-native-svg/apple/
H A DABI48_0_0RNSVGUIKit.macos.mm23 - (NSColor *)tintColor
29 // To mimic iOS's tintColor, we crawl up the view hierarchy until either:
34 return [(ABI48_0_0RNSVGView *)parentView tintColor];
40 - (void)setTintColor:(NSColor *)tintColor
42 _tintColor = tintColor;
/expo/ios/vendored/unversioned/react-native-svg/apple/
H A DRNSVGUIKit.macos.mm23 - (NSColor *)tintColor
29 // To mimic iOS's tintColor, we crawl up the view hierarchy until either:
34 return [(RNSVGView *)parentView tintColor];
40 - (void)setTintColor:(NSColor *)tintColor
42 _tintColor = tintColor;
/expo/ios/vendored/sdk49/react-native-svg/apple/
H A DABI49_0_0RNSVGUIKit.macos.mm23 - (NSColor *)tintColor
29 // To mimic iOS's tintColor, we crawl up the view hierarchy until either:
34 return [(ABI49_0_0RNSVGView *)parentView tintColor];
40 - (void)setTintColor:(NSColor *)tintColor
42 _tintColor = tintColor;
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/Libraries/LogBox/UI/__tests__/__snapshots__/
H A DLogBoxInspectorSourceMapStatus-test.js.snap41 "tintColor": "rgba(255, 255, 255, 0.4)",
45 "tintColor": "rgba(243, 83, 105, 1)",
108 "tintColor": "rgba(255, 255, 255, 0.4)",
112 "tintColor": "rgba(250, 186, 48, 1)",
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/Libraries/LogBox/UI/__tests__/__snapshots__/
H A DLogBoxInspectorSourceMapStatus-test.js.snap41 "tintColor": "rgba(255, 255, 255, 0.4)",
45 "tintColor": "rgba(243, 83, 105, 1)",
108 "tintColor": "rgba(255, 255, 255, 0.4)",
112 "tintColor": "rgba(250, 186, 48, 1)",
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/Libraries/LogBox/UI/__tests__/__snapshots__/
H A DLogBoxInspectorSourceMapStatus-test.js.snap41 "tintColor": "rgba(255, 255, 255, 0.4)",
45 "tintColor": "rgba(243, 83, 105, 1)",
108 "tintColor": "rgba(255, 255, 255, 0.4)",
112 "tintColor": "rgba(250, 186, 48, 1)",
/expo/apps/native-component-list/src/navigation/
H A DStackConfig.tsx38 headerTintColor: Colors.tintColor,
40 headerPressColorAndroid: Colors.tintColor,
48 color={Colors.tintColor}

12345678910