| /expo/packages/expo-camera/build/utils/ |
| H A D | props.js | 14 const nativeProps = {}; 17 nativeProps[key] = ConversionTables[key][value]; 20 nativeProps[key] = value; 23 return nativeProps;
|
| /expo/packages/expo-barcode-scanner/build/ |
| H A D | BarCodeScanner.js | 84 const nativeProps = this.convertNativeProps(this.props); 86 …return (React.createElement(ExpoBarCodeScannerView, { ...nativeProps, onBarCodeScanned: this.onObj… 109 const nativeProps = {}; 112 nativeProps[key] = BarCodeScanner.ConversionTables[key][value]; 115 nativeProps[key] = value; 118 return nativeProps;
|
| /expo/packages/expo-blur/build/ |
| H A D | BlurView.web.js | 11 setNativeProps(nativeProps) { argument 13 const intensity = nativeProps.style.intensity ?? standardIntensity; 16 ...nativeProps, 17 style: [style, blurStyle, nativeProps.style],
|
| H A D | BlurView.web.d.ts | 10 setNativeProps(nativeProps: any): void;
|
| /expo/packages/expo-camera/src/utils/ |
| H A D | props.ts | 31 const nativeProps: CameraNativeProps = {}; constant 35 nativeProps[key] = ConversionTables[key][value]; 37 nativeProps[key] = value; 41 return nativeProps;
|
| /expo/ios/versioned/sdk47/EXBlur/EXBlur/ |
| H A D | ABI47_0_0EXBlurViewManager.m | 47 setNativeProps:(NSDictionary *)nativeProps 55 …if (nativeProps[@"intensity"]) { [blurView setIntensity:[nativeProps[@"intensity"] floatValue] / 1… 56 if (nativeProps[@"tint"]) { [blurView setTint:nativeProps[@"tint"]]; }
|
| /expo/ios/vendored/sdk48/react-native-reanimated/ios/Nodes/ |
| H A D | ABI48_0_0REAPropsNode.m | 39 NSMutableDictionary *nativeProps = [NSMutableDictionary new]; 45 } else if ([self.nodesManager.nativeProps containsObject:key]) { 46 nativeProps[key] = obj; 68 if (nativeProps.count > 0) { 71 nativeProps:nativeProps
|
| /expo/ios/vendored/sdk47/react-native-reanimated/ios/Nodes/ |
| H A D | ABI47_0_0REAPropsNode.m | 39 NSMutableDictionary *nativeProps = [NSMutableDictionary new]; 45 } else if ([self.nodesManager.nativeProps containsObject:key]) { 46 nativeProps[key] = obj; 68 if (nativeProps.count > 0) { 71 nativeProps:nativeProps
|
| /expo/packages/html-elements/build/elements/ |
| H A D | Anchor.js | 5 const nativeProps = Platform.select({ constant 23 …return React.createElement(Text, { accessibilityRole: "link", ...props, ...nativeProps, ref: ref }…
|
| H A D | Table.web.js | 3 function createView(nativeProps) { argument 5 return React.createElement(View, { ...nativeProps, ...props, ref: ref });
|
| H A D | Layout.js | 4 function createView(nativeProps = {}) { argument 6 return React.createElement(View, { ...nativeProps, ...props, ref: ref });
|
| H A D | Lists.js | 5 function createView(nativeProps = {}) { argument 7 return React.createElement(View, { ...nativeProps, ...props, ref: ref });
|
| H A D | Headings.js | 6 const nativeProps = Platform.select({ 13 …return (React.createElement(Text, { ...nativeProps, accessibilityRole: "header", ...props, style: …
|
| /expo/packages/expo-av/build/ |
| H A D | Video.js | 44 setNativeProps(nativeProps) { argument 48 nativeVideo.setNativeProps(nativeProps); 243 const nativeProps = { 264 return (React.createElement(View, { style: nativeProps.style, pointerEvents: "box-none" }, 265 …eact.createElement(ExponentVideo, { ref: this._nativeRef, ...nativeProps, style: nativeProps.video…
|
| /expo/packages/html-elements/src/elements/ |
| H A D | Anchor.tsx | 8 const nativeProps = Platform.select<LinkProps>({ 26 return <Text accessibilityRole="link" {...props} {...nativeProps} ref={ref} />;
|
| H A D | Layout.tsx | 6 function createView(nativeProps: ViewProps = {}): ComponentType<ViewProps> { 8 return <View {...nativeProps} {...props} ref={ref} />;
|
| H A D | Table.web.tsx | 6 function createView(nativeProps: ViewProps & { __element: string }): ComponentType<ViewProps> { 8 return <View {...nativeProps} {...props} ref={ref} />;
|
| H A D | Lists.tsx | 7 function createView(nativeProps: ViewProps = {}): ComponentType<ViewProps> { 9 return <View {...nativeProps} {...props} ref={ref} />;
|
| /expo/ios/vendored/unversioned/react-native-reanimated/ios/ |
| H A D | REANodesManager.h | 25 @property (nonatomic, nullable) NSSet<NSString *> *nativeProps; 54 nativeProps:(NSMutableDictionary *)nativeProps
|
| /expo/ios/vendored/sdk49/react-native-reanimated/ios/ |
| H A D | ABI49_0_0REANodesManager.h | 25 @property (nonatomic, nullable) NSSet<NSString *> *nativeProps; 54 nativeProps:(NSMutableDictionary *)nativeProps
|
| /expo/packages/expo-blur/src/ |
| H A D | BlurView.web.tsx | 15 setNativeProps(nativeProps) { 17 const intensity = nativeProps.style.intensity ?? standardIntensity; 20 ...nativeProps, 21 style: [style, blurStyle, nativeProps.style],
|
| /expo/android/vendored/sdk48/react-native-reanimated/android/src/main/java/abi48_0_0/com/swmansion/reanimated/nodes/ |
| H A D | PropsNode.java | 75 final WritableMap nativeProps = Arguments.createMap(); in evaluate() local 88 } else if (mNodesManager.nativeProps.contains(key)) { in evaluate() 90 dest = nativeProps; in evaluate() 118 addProp(nativeProps, key, value); in evaluate() 128 mNodesManager.enqueueUpdateViewOnNativeThread(mConnectedViewTag, nativeProps, false); in evaluate()
|
| /expo/android/vendored/sdk47/react-native-reanimated/android/src/main/java/abi47_0_0/com/swmansion/reanimated/nodes/ |
| H A D | PropsNode.java | 75 final WritableMap nativeProps = Arguments.createMap(); in evaluate() local 88 } else if (mNodesManager.nativeProps.contains(key)) { in evaluate() 90 dest = nativeProps; in evaluate() 118 addProp(nativeProps, key, value); in evaluate() 128 mNodesManager.enqueueUpdateViewOnNativeThread(mConnectedViewTag, nativeProps, false); in evaluate()
|
| /expo/ios/vendored/sdk47/react-native-reanimated/ios/ |
| H A D | ABI47_0_0REANodesManager.h | 19 @property (nonatomic, nullable) NSSet<NSString *> *nativeProps; 36 nativeProps:(NSMutableDictionary *)nativeProps
|
| /expo/ios/vendored/sdk48/react-native-reanimated/ios/ |
| H A D | ABI48_0_0REANodesManager.h | 19 @property (nonatomic, nullable) NSSet<NSString *> *nativeProps; 36 nativeProps:(NSMutableDictionary *)nativeProps
|