0

i create my app via react-native init and run android emulator and i am trying to debug it via react native debugger. i connect my app to the react native debugger but inside Sources tab i cant see my folders like: src, images, etc. i see all files without their folder including all node_modules files. How can i see my src folder and inside it the javascript files? here is what i am seeing: enter image description here

1 Answer 1

1

Try to use debugger. It will stop execution and it will show breakpoint from that line.

willFocusAction = () => {
  debugger;
  this.setState({ loading: true });
  this.wsGetContestList(this.state.defaultPage, false)
}
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.