About 290,000 results
Open links in new tab
  1. Redux DevTools with Expo 49 beta (React Native & Hermes engine)

    Jul 1, 2023 · I'm using Expo 49 Beta (React Native) which introduces new debugging capabilities with Hermes. This means that react-native-debugger which also integrates redux-devtools is getting …

  2. react native - TypeError: Cannot read property 'store' of undefined ...

    Dec 8, 2023 · For my react-native project i encountered this error after long time of RnD i am still nowhere i dont know what is causing this issue, I read all the open and closed issues on react-native, …

  3. How can I Add Redux Toolkit to Expo (sdk 50) Project?

    Feb 8, 2024 · Traditional React Native projects are structured with a single root component that is often defined in ./App.js or ./index.js. This pattern is often used to inject global providers such as Redux, …

  4. Is Redux the same for React and React native? - Stack Overflow

    Dec 1, 2019 · React Native contains React library to use it as front-end library. Most of usages of React are the same for React-Native. And it is same for Redux too. React-Native must have other libraries …

  5. How do I add an element to array in reducer of React native redux ...

    Dec 2, 2016 · How do I add an element to array in reducer of React native redux? Asked 9 years ago Modified 2 years ago Viewed 224k times

  6. How to solve: console.error: "redux-persist failed to create sync ...

    Sep 4, 2019 · 95 I'm trying to setup redux-persist in a react native app. However I'm hitting this error: console.error: "redux-persist failed to create sync storage. falling back to "noop" storage I've tried to …

  7. reactjs - What is the best way to access redux store outside a react ...

    Accessing the Redux store outside a React component is generally discouraged because Redux is primarily designed to manage application state within React components.

  8. redux - Offline first React Native Expo app with background sync ...

    Feb 25, 2022 · Probably needs client state (redux/Zustand etc) for managing state with unverified fields. For storing submitted forms, react-query supports offline caching of 'mutations'. Background sync - …

  9. Using ViewModels in React Native (instead of Redux)

    Feb 23, 2025 · State management in React Native is a well-debated topic, with Redux often being the default choice. However, for developers coming from native mobile development (Kotlin/Swift), …

  10. react native - Subscribe to single property change in store in Redux ...

    Mar 25, 2016 · In Redux I can easily subscribe to store changes with store.subscribe(() => my handler goes here) But what if my store is full of different objects and in a particular place in my app I want to …