Create New React Native Project with EXPO
-> npx create-expo-app@latest
--> npx expo install expo-router react-native-safe-area-context react-native-screens expo-linking expo-constants expo-status-bar
package.json
{ "main": "expo-router/entry"}
app.json
{"scheme": "your-app-scheme"}
babel.config.js
module.exports = function (api) {
api.cache(true);
return {
presets: ['babel-preset-expo'],
};
};--> npx expo start -c
0 Comments