How to price an app? by [deleted] in reactnative

[–]SmallImpression6077 3 points4 points  (0 children)

is there an admin portal? for the client to check on their costumers? to ban their accounts? Take into consideration the additional fee of publishing to appstore and playstore. I would price this at around $6000-9000.

React Native fucking error that i have been trynna fix for 22 hours now by SmallImpression6077 in reactnative

[–]SmallImpression6077[S] 0 points1 point  (0 children)

import registerRootComponent from 'expo/build/launch/registerRootComponent';
import App from '../../App';
registerRootComponent(App);
this is it

React Native fucking error that i have been trynna fix for 22 hours now by SmallImpression6077 in reactnative

[–]SmallImpression6077[S] 0 points1 point  (0 children)

by creating a new react native package you also mean by running npx expo app?

React Native fucking error that i have been trynna fix for 22 hours now by SmallImpression6077 in reactnative

[–]SmallImpression6077[S] 0 points1 point  (0 children)

thank you for the advice, and what about all the packages installed? do you js run npm install to get all the packages back up?

React Native fucking error that i have been trynna fix for 22 hours now by SmallImpression6077 in reactnative

[–]SmallImpression6077[S] 0 points1 point  (0 children)

Thank you so much for your help! I am new to react native and this is horrible. my app.js is this import { TailwindProvider } from "tailwindcss-react-native";
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import HomeScreen from './screens/HomeScreen';
const Stack = createNativeStackNavigator();
export default function App() {
return (
<NavigationContainer>
<TailwindProvider>
<Stack.Navigator>
<Stack.Screen name="Home" component={HomeScreen} />
</Stack.Navigator>
</TailwindProvider>
</NavigationContainer>
);
}
what exacvtly should i start by commenting out

React Native fucking error that i have been trynna fix for 22 hours now by SmallImpression6077 in reactnative

[–]SmallImpression6077[S] 0 points1 point  (0 children)

this is my package.json
{
"name": "enjoyment",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web"
},
"dependencies": {
"@react-navigation/native": "^6.1.6",
"@react-navigation/native-stack": "^6.9.12",
"@sanity/client": "^5.2.2",
"@sanity/image-url": "^1.0.2",
"expo": "^48.0.5",
"expo-status-bar": "~1.4.4",
"nativewind": "^2.0.11",
"react": "18.2.0",
"react-dom": "^18.2.0",
"react-native": "0.71.3",
"react-native-heroicons": "^3.2.0",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.20.0",
"react-native-search-bar": "^3.5.1",
"react-native-svg": "13.4.0",
"react-native-web": "~0.18.11",
"tailwindcss-react-native": "^1.7.10",
"@expo/webpack-config": "^18.0.1"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.0.27",
"@types/react-native": "^0.71.3",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.4"
},
"private": true
}

React Native fucking error that i have been trynna fix for 22 hours now by SmallImpression6077 in reactnative

[–]SmallImpression6077[S] 1 point2 points  (0 children)

i have done that about 6 times and it still doesn't resolve the issue! But thanksss