skip to Main Content

> Could not find any matches for com.facebook.react:react-native:+ as no versions of com.facebook.react:react-native are available – React native

There was apparently a RN outage. This causes so much issues now as I can get a build out. https://github.com/facebook/react-native/issues/35210 but that "FIX" says to look at https://github.com/facebook/react-native/issues/35210#:~:text=We%20have%20prepared%20releases%20for%20all%20the%20main%20versions%20of%20react%2Dnative%20with%20an%20hotfix%3A The issue with that is there is no mention of 0.71.0-RC.0 version…

VIEW QUESTION

'TouchableOpacity' cannot be used as a JSX component. 'View' is not a valid JSX element – React native

'TouchableOpacity' cannot be used as a JSX component. Its instance type 'TouchableOpacity' is not a valid JSX element. The types returned by 'render()' are incompatible between these types. Type 'import("/Users/sanjeevkumar/React/help_idea_update/mypatapp-v2-update/node_modules/@types/react-native/node_modules/@types/react/index").ReactNode' is not assignable to type 'React.ReactNode'. why this is giving…

VIEW QUESTION

:: React Native :: Get data from another db table not working

I have a React native project I want to display manufacture's name (brand name) above the product name like below <View style={styles.infromationView}> <Text>{data.manufacturers.name}</Text> <Text>{data.product_description.name}</Text> </View> While adding the name, I am getting error as Cannot read property 'name' of undefined…

VIEW QUESTION

How can I implement swipe up navigation with Stacks in react-native similar to TikTok? – React native

In App.tsx, I have: export default function App() { const Stack = createNativeStackNavigator(); return ( <NavigationContainer> <Stack.Navigator initialRouteName='feed' screenOptions={{ headerShown: false, gestureDirection: 'vertical' }}> <Stack.Screen name="feed" component={IvoryFeedScreen} /> <Stack.Screen name="home" component={HomeScreen} /> </Stack.Navigator> </NavigationContainer> ); } How can I have…

VIEW QUESTION
Back To Top
Search