Home > Blockchain >  Redux Devtools not showing up in React Native remote debugging
Redux Devtools not showing up in React Native remote debugging

Time:12-04

I can't set my redux store properly with react native. I can't use redux dev tools when im debugging remotely. Can someone help?

CodePudding user response:

Redux tools will not work with the react-native directly, it needs additional changes but you can use react-native-debugger

this provides the tools necessary without additional setup,

  • Related