Expo
Introduction
Development Flow
# Install the native module and make sure version compatibility
npx expo install package-name
# Compile the react-native code into native Code
# link the native dependencies and rebuild ios and android directory (native code)
# Build an new app into simulator / device
npx expo run:ios --device
# Start Metro Bunder to bundle typescript code
# Enable hot reload and create local development server
# Mainly for development purpose
npx expo start
File-based Routing
Last updated