How can I run the application without rebuilding the project (of course the app is installed on the relevant simulator from previous run)
I run the application on iOS (for instance) like this:
react-native run-ios --simulator='iPhone 8'
How can I run the application without rebuilding the project (of course the app is installed on the relevant simulator from previous run)
I run the application on iOS (for instance) like this:
react-native run-ios --simulator='iPhone 8'
Depends on what you're trying to do. If you just need to reload, then you can do it through the developer menu as @Kraylog says. Or via ⌘R
if the application is already open and running.
If you've closed packager/metro bundler, then you'll want to start that with react-native start
. You should then be able to just click the app icon in the simulator to run it + reloading as stated above as needed.