InterviewSolution
| 1. |
How do you access the in-app developer menu in React native? |
|
Answer» Debugging CODE is a very important aspect of development. The importance of debugging can be understood by the fact that debugging is ALSO considered as a skill in software development. If a developer has a good debugging skill then there are chances and code will be of better quality and very well TESTED. To cater to this requirement of a developer, React native has provided pretty good support to debug the code. You can access the developer menu by shaking your device or by selecting "Shake Gesture" inside the Hardware menu in the iOS Simulator. You can also use the CMD + D keyboard shortcut when your app is running in the iOS Simulator, or CMD + M when running in an Android EMULATOR on Mac OS and Ctrl+M on Windows and Linux. There are options to remotely debug the application via chrome browser. It will make the application a little slow but it is a good addition to enhance the development experience of the developer. |
|