Home
last modified time | relevance | path

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

12345678910>>...80

/expo/packages/html-elements/build/elements/
H A D_Text.web.js5 return createElement('p', { ...props, style: [styles.reset, style], ref });
8 return createElement('b', { ...props, style: [styles.reset, style], ref });
11 return createElement('s', { ...props, style: [styles.reset, style], ref });
14 return createElement('del', { ...props, style: [styles.reset, style], ref });
17 return createElement('strong', { ...props, style: [styles.reset, style], ref });
20 return createElement('i', { ...props, style: [styles.reset, style], ref });
23 return createElement('q', { ...props, style: [styles.reset, style], ref });
29 return createElement('em', { ...props, style: [styles.reset, style], ref });
38 return createElement('mark', { ...props, style: [styles.reset, style], ref });
44 return createElement('time', { ...props, style: [styles.reset, style], ref });
[all …]
H A DText.js7 return React.createElement(Text, { ...props, style: [styles.p, style], ref: ref });
10 return React.createElement(Text, { ...props, style: [styles.b, style], ref: ref });
13 return React.createElement(Text, { ...props, style: [styles.s, style], ref: ref });
16 return React.createElement(Text, { ...props, style: [styles.i, style], ref: ref });
19 return (React.createElement(Text, { ...props, style: [styles.q, style], ref: ref },
25 return React.createElement(View, { ...props, style: [styles.blockQuote, style], ref: ref });
28 return React.createElement(Text, { ...props, style: [styles.br, style], ref: ref });
31 return React.createElement(Text, { ...props, style: [styles.mark, style], ref: ref });
34 return React.createElement(Text, { ...props, style: [styles.code, style], ref: ref });
41 …return React.createElement(Text, { ...props, style: [styles.code, styles.pre, props.style], ref: r…
[all …]
/expo/packages/html-elements/src/css/
H A DfilterStyles.ts63 const style = StyleSheet.flatten(styleProp); constant
72 function processNativeStyles(style) {
73 if (!style) return style;
75 if (style.visibility) {
76 if (style.visibility === 'hidden') {
78 style.opacity = 0;
80 delete style.visibility;
83 if (style.position) {
84 if (!['absolute', 'relative'].includes(style.position)) {
86 style.position = 'relative';
[all …]
/expo/packages/html-elements/build/css/
H A DfilterStyles.js61 const style = StyleSheet.flatten(styleProp);
65 function processNativeStyles(style) { argument
66 if (!style)
67 return style;
68 if (style.visibility) {
69 if (style.visibility === 'hidden') {
71 style.opacity = 0;
73 delete style.visibility;
75 if (style.position) {
78 style.position = 'relative';
[all …]
/expo/packages/html-elements/src/elements/
H A D_Text.web.tsx9 return createElement('p', { ...props, style: [styles.reset, style], ref });
13 return createElement('b', { ...props, style: [styles.reset, style], ref });
17 return createElement('s', { ...props, style: [styles.reset, style], ref });
21 return createElement('del', { ...props, style: [styles.reset, style], ref });
25 return createElement('strong', { ...props, style: [styles.reset, style], ref });
29 return createElement('i', { ...props, style: [styles.reset, style], ref });
33 return createElement('q', { ...props, style: [styles.reset, style], ref });
41 return createElement('em', { ...props, style: [styles.reset, style], ref });
53 return createElement('mark', { ...props, style: [styles.reset, style], ref });
61 return createElement('time', { ...props, style: [styles.reset, style], ref });
[all …]
H A DText.tsx10 return <Text {...props} style={[styles.p, style]} ref={ref} />;
14 return <Text {...props} style={[styles.b, style]} ref={ref} />;
18 return <Text {...props} style={[styles.s, style]} ref={ref} />;
22 return <Text {...props} style={[styles.i, style]} ref={ref} />;
27 <Text {...props} style={[styles.q, style]} ref={ref}>
34 return <View {...props} style={[styles.blockQuote, style]} ref={ref} />;
38 return <Text {...props} style={[styles.br, style]} ref={ref} />;
42 return <Text {...props} style={[styles.mark, style]} ref={ref} />;
46 return <Text {...props} style={[styles.code, style]} ref={ref} />;
57 return <Text {...props} style={[styles.code, styles.pre, props.style]} ref={ref} />;
[all …]
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/Libraries/LogBox/UI/__tests__/__snapshots__/
H A DLogBoxInspectorReactFrames-test.js.snap8 style={
23 style={
33 style={
100 style={
115 style={
144 style={
159 style={
236 style={
328 style={
420 style={
[all …]
H A DLogBoxInspectorMesageHeader-test.js.snap5 style={
20 style={
31 style={
50 style={
82 style={
97 style={
127 style={
159 style={
249 style={
326 style={
[all …]
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/Libraries/LogBox/UI/__tests__/__snapshots__/
H A DLogBoxInspectorReactFrames-test.js.snap8 style={
23 style={
33 style={
100 style={
115 style={
144 style={
159 style={
236 style={
328 style={
420 style={
[all …]
H A DLogBoxInspectorMessageHeader-test.js.snap5 style={
20 style={
31 style={
50 style={
82 style={
97 style={
127 style={
159 style={
249 style={
326 style={
[all …]
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/Libraries/LogBox/UI/__tests__/__snapshots__/
H A DLogBoxInspectorReactFrames-test.js.snap8 style={
23 style={
33 style={
100 style={
115 style={
144 style={
159 style={
236 style={
328 style={
420 style={
[all …]
H A DLogBoxInspectorMesageHeader-test.js.snap5 style={
20 style={
31 style={
50 style={
82 style={
97 style={
127 style={
159 style={
249 style={
326 style={
[all …]
/expo/packages/expo-blur/build/
H A DBlurView.web.js12 const { style, tint, intensity: standardIntensity } = this.props;
13 const intensity = nativeProps.style.intensity ?? standardIntensity;
17 style: [style, blurStyle, nativeProps.style],
21 const { tint = 'default', intensity = 50, style, ...props } = this.props;
23 … return React.createElement(View, { ...props, style: [style, blurStyle], ref: this.blurViewRef });
39 const style = { variable
44 style.backdropFilter = blur;
46 style.WebkitBackdropFilter = blur;
48 return style;
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/yoga/yoga/
H A DABI49_0_0YGNodePrint.cpp141 const auto& style = node->getStyle(); in ABI49_0_0YGNodeToString() local
146 ABI49_0_0YGFlexDirectionToString(style.flexDirection())); in ABI49_0_0YGNodeToString()
152 ABI49_0_0YGJustifyToString(style.justifyContent())); in ABI49_0_0YGNodeToString()
168 appendNumberIfNotAuto(str, "flex-basis", style.flexBasis()); in ABI49_0_0YGNodeToString()
169 appendFloatOptionalIfDefined(str, "flex", style.flex()); in ABI49_0_0YGNodeToString()
185 appendEdges(str, "margin", style.margin()); in ABI49_0_0YGNodeToString()
186 appendEdges(str, "padding", style.padding()); in ABI49_0_0YGNodeToString()
187 appendEdges(str, "border", style.border()); in ABI49_0_0YGNodeToString()
190 style.gap(), detail::CompactValue::ofUndefined()) != in ABI49_0_0YGNodeToString()
194 str, "column-gap", style.gap()[ABI49_0_0YGGutterColumn]); in ABI49_0_0YGNodeToString()
[all …]
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/yoga/yoga/
H A DABI48_0_0YGNodePrint.cpp139 const auto& style = node->getStyle(); in ABI48_0_0YGNodeToString() local
144 ABI48_0_0YGFlexDirectionToString(style.flexDirection())); in ABI48_0_0YGNodeToString()
150 ABI48_0_0YGJustifyToString(style.justifyContent())); in ABI48_0_0YGNodeToString()
166 appendNumberIfNotAuto(str, "flex-basis", style.flexBasis()); in ABI48_0_0YGNodeToString()
167 appendFloatOptionalIfDefined(str, "flex", style.flex()); in ABI48_0_0YGNodeToString()
183 appendEdges(str, "margin", style.margin()); in ABI48_0_0YGNodeToString()
184 appendEdges(str, "padding", style.padding()); in ABI48_0_0YGNodeToString()
185 appendEdges(str, "border", style.border()); in ABI48_0_0YGNodeToString()
188 style.gap(), detail::CompactValue::ofUndefined()) != in ABI48_0_0YGNodeToString()
192 str, "column-gap", style.gap()[ABI48_0_0YGGutterColumn]); in ABI48_0_0YGNodeToString()
[all …]
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/yoga/yoga/
H A DABI47_0_0YGNodePrint.cpp139 const auto& style = node->getStyle(); in ABI47_0_0YGNodeToString() local
144 ABI47_0_0YGFlexDirectionToString(style.flexDirection())); in ABI47_0_0YGNodeToString()
150 ABI47_0_0YGJustifyToString(style.justifyContent())); in ABI47_0_0YGNodeToString()
164 appendFloatOptionalIfDefined(str, "flex-grow", style.flexGrow()); in ABI47_0_0YGNodeToString()
166 appendNumberIfNotAuto(str, "flex-basis", style.flexBasis()); in ABI47_0_0YGNodeToString()
167 appendFloatOptionalIfDefined(str, "flex", style.flex()); in ABI47_0_0YGNodeToString()
169 if (style.flexWrap() != ABI47_0_0YGNode().getStyle().flexWrap()) { in ABI47_0_0YGNodeToString()
179 if (style.display() != ABI47_0_0YGNode().getStyle().display()) { in ABI47_0_0YGNodeToString()
183 appendEdges(str, "margin", style.margin()); in ABI47_0_0YGNodeToString()
184 appendEdges(str, "padding", style.padding()); in ABI47_0_0YGNodeToString()
[all …]
/expo/packages/html-elements/src/elements/__tests__/__snapshots__/
H A DText-test.tsx.snap.ios5 style={
17 style={
28 style={
38 style={
49 style={
62 style={
74 style={
86 style={
97 style={
109 style={
[all …]
H A DText-test.tsx.snap.android5 style={
17 style={
28 style={
38 style={
49 style={
62 style={
74 style={
86 style={
97 style={
109 style={
[all …]
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/Libraries/Lists/__tests__/__snapshots__/
H A DVirtualizedList-test.js.snap390 style={
871 style={
886 style={
1026 style={
1043 style={
1056 style={
1077 style={
1098 style={
1119 style={
1140 style={
[all …]
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/Libraries/Lists/__tests__/__snapshots__/
H A DVirtualizedList-test.js.snap415 style={
910 style={
926 style={
1035 style={
1052 style={
1066 style={
1088 style={
1110 style={
1132 style={
1154 style={
[all …]
/expo/packages/@expo/metro-config/src/transform-worker/__tests__/__snapshots__/
H A Dtransform-worker.test.ts.snap11 const style = document.createElement('style');
18 head.appendChild(style);
20 if (style.styleSheet){
21 style.styleSheet.cssText = css;
53 const style = document.createElement('style');
60 head.appendChild(style);
65 if (style.styleSheet){
66 style.styleSheet.cssText = css;
104 const style = document.createElement('style');
111 head.appendChild(style);
[all …]
/expo/home/components/
H A DPlatformIcon.tsx10 const style = Platform.select({
20 android: <Ionicons name="logo-android" size={17} lightColor="#000" style={style} />,
21 ios: <Ionicons name="logo-apple" size={17} lightColor="#000" style={style} />,
22 default: <Ionicons name="md-tablet-portrait" size={15} lightColor="#000" style={style} />,
25 icon = <Ionicons name="ios-globe" size={15} lightColor="#000" style={style} />;
28 return <View style={styles.container}>{icon}</View>;
/expo/apps/test-suite/tests/
H A DVideo.js140 await mountAndWaitFor(<Video style={style} />, 'ref'); field
166 style={style} field
183 style={style} field
287 style, field
296 style, field
307 style, field
319 style, field
329 style, field
340 style, field
351 style, field
[all …]
H A DCamera.js74 await mountAndWaitFor(<Camera style={style} ref={refSetter} />); field
86 await mountAndWaitFor(<Camera ref={refSetter} style={style} />); field
93 await mountAndWaitFor(<Camera ref={refSetter} style={style} />); field
101 await mountAndWaitFor(<Camera ref={refSetter} style={style} />); field
112 await mountAndWaitFor(<Camera ref={refSetter} style={style} />); field
179 style={style} field
193 style={style} field
280 await mountAndWaitFor(<Camera ref={refSetter} style={style} />); field
312 await mountAndWaitFor(<Camera ref={refSetter} style={style} />); field
348 style={style} field
[all …]
/expo/packages/expo-dev-menu/vendored/react-native-safe-area-context/src/
H A DNativeSafeAreaProvider.tsx25 style,
63 return <View style={style}>{children}</View>;
109 const { style } = element;
110 style.position = 'fixed';
111 style.left = '0';
112 style.top = '0';
113 style.width = '0';
114 style.height = '0';
115 style.zIndex = '-1';
116 style.overflow = 'hidden';
[all …]

12345678910>>...80