Searched refs:NativeView (Results 1 – 12 of 12) sorted by relevance
| /expo/packages/html-elements/build/primitives/ |
| H A D | View.js | 1 import { View as NativeView, } from 'react-native'; 4 let View = NativeView; 7 View = createDevView(NativeView);
|
| H A D | View.d.ts | 2 import { AccessibilityRole, StyleProp, View as NativeView, ViewStyle as NativeViewStyle } from 'rea… 3 type NativeViewProps = ComponentProps<typeof NativeView> & ClassAttributes<typeof NativeView>;
|
| H A D | View.js.map | 1 …NativeView,\n ViewStyle as NativeViewStyle,\n} from 'react-native';\n\nimport { createDevView } f…
|
| /expo/packages/expo-gl/build/ |
| H A D | GLView.js | 8 const NativeView = requireNativeViewManager('ExponentGLView'); constant 16 static NativeView; field in GLView 60 React.createElement(NativeView, { ref: this._setNativeRef, style: { 132 GLView.NativeView = NativeView;
|
| H A D | GLView.d.ts | 11 static NativeView: any;
|
| H A D | GLView.js.map | 1 …NativeView = requireNativeViewManager('ExponentGLView');\nconst workletContextManager = createWork…
|
| /expo/packages/expo-module-template/src/ |
| H A D | {%- project.viewName %}.tsx | 6 const NativeView: React.ComponentType<<%- project.viewName %>Props> = 10 return <NativeView {...props} />;
|
| /expo/packages/expo-module-template-local/src/ |
| H A D | {%- project.viewName %}.tsx | 6 const NativeView: React.ComponentType<<%- project.viewName %>Props> = 10 return <NativeView {...props} />;
|
| /expo/packages/html-elements/src/primitives/ |
| H A D | View.tsx | 5 View as NativeView, 14 type NativeViewProps = ComponentProps<typeof NativeView> & ClassAttributes<typeof NativeView>; 148 let View = NativeView as ComponentType<ViewProps>; 152 View = createDevView(NativeView) as ComponentType<ViewProps>;
|
| /expo/packages/html-elements/src/primitives/__tests__/ |
| H A D | createDevView.test.tsx | 2 import { Platform, View as NativeView } from 'react-native'; 7 export const View = createDevView(NativeView);
|
| /expo/packages/expo-gl/src/ |
| H A D | GLView.tsx | 32 const NativeView = requireNativeViewManager('ExponentGLView'); 41 static NativeView: any; 102 <NativeView 201 GLView.NativeView = NativeView;
|
| /expo/docs/pages/modules/ |
| H A D | native-view-tutorial.mdx | 73 const NativeView: React.ComponentType<Props> = requireNativeViewManager('ExpoWebView'); 76 return <NativeView {...props} />; 234 const NativeView: React.ComponentType<Props> = requireNativeViewManager('ExpoWebView'); 237 return <NativeView {...props} />; 391 const NativeView: React.ComponentType<Props> = requireNativeViewManager('ExpoWebView'); 394 return <NativeView {...props} />;
|