Skip to main content

Enable debugging with React Native + Visual Studio Code + iPhone device + Expo

Setup Debugging on Visual Studio Code

  1. Make sure you have expo-cli installed globally - if not, run: npm install -g expo-cli
  2. Open Visual Studio Code
  3. Click: Control + Shift + D to Open Run and Debug window
  4. If you have never set this up before, select the Create a launch.json file under Run and Debug button
  5. If you had a launch.json file before, select the option Add Config (your workspace name)
  6. Select React Native
  7. Click Debug Application
  8. Click Exponent
  9. Select Application in Direct mode
  10. Select Tunnel 
  11. Save the file
  12. launch.json file should be ready

Start the debug session

  1. Note: if you are missing some library, Expo will remind you to install. Follow the instruction if required
  2. Re-open Run and Debug window if not yet opened (Control + Shift + D to open)
  3. Select "Debug in Exponent" on the drop down list box
  4. Click F5 to start the debugging session
  5. Expo QR Code window should show up on the right handside
  6. Open Expo Go (download if not yet installed
  7. Scan the code with your camera
  8. Select Open on Expo Go option
  9. Once the app opened, on the iOS device, shake the phone and enable Debugging
  10. Set a few breakpoints on your code and give it a try

Debugging

  1. F10 to step over
  2. F5 to continue
  3. F11 to step in


Additional websites if you need further support



Comments

Popular posts from this blog

Checked Task Pro Instruction (BlackBerry 10)

  Checked Instruction I just started working on this page, please send me comments and suggestions that could improve this site. Please note that if you use the Android app, the instruction is similar to the BlackBerry app below. I will create a separate instruction page for Android app soon. Contents 1  Initial Set-up after Installation 2  SMART task system that combine the best of GTD (Getting Things Done) and MYN  3  Smart Add - natural language date parser 4  ***NEW*** Shortcuts 5  Back-up and Restore - How to Transfer data from one device to another 6  BES - Work Space - Add a public app from the BlackBerry World storefront 7  Settings options that will definitely increase your productivity 8  Automatically add email as task 9  Tips on improving performance 10  Add a category 11  Delete a category 12  Keep categories permanently 13  Add sub-task 14  Automatic Synchronize from remember 15  Sort options 16  How to add recurrent task and edit advance calendar detail 17  Outlook.com a

New Site

Testing the new site! The focus will be on Project Portfolio Management and Software Development. Hope everyone's having a great day!

React Native - Global StyleSheet and Dark/Light Theme design approach

We use StyleSheet in almost all components. Generally there are three different approaches to changing component layout with React Native: Direct layout change in the component (e.g. text field) Create a StyleSheet section in each page Create a Global StyleSheet and reference in each component Personally speaking, I do not recommend the first 2 options due to: maintenance and inconsistency approach in design between different components harder to transfer to a new project. with GlobalStyles, you can put on a separate windows for easy view and update as you work on different component apply the dark/light theme to the component directly through GlobalStyles without having to customize it for each page Theme - Dark and Light theme with React Native with iOS, Android, Web, etc. Warning: if you use Expo Debugging, the system will default to Light theme (at least on iOS). Remove Remote Debugging if you want the Dark Theme to show up. In your Navigagor, apply the theme: const scheme = useCol