#90 Easy Peasy | React Native State Management | Part 6

preview_player
Показать описание
Easy Peasy | React Native State Management | Part 6

Easy Peasy is an abstraction of Redux, providing a reimagined API that focuses on developer experience. It allows you to quickly and easily manage your state, whilst leveraging the strong architectural guarantees and extensive eco-system that Redux has to offer.

Zero configuration
No boilerplate
React hooks based API
Extensive TypeScript support
Encapsulate data fetching
Computed properties
Reactive actions
Redux middleware support
State persistence
Redux Dev Tools
Global, context, or local stores
Built-in testing utils
React Native supported
Hot reloading supported

#EasyPeasy #ReactNative #StateManagement #ReactNativeState #ErHarinderSingh #ReactNativeTutorials

Thanks for watching my video. I am trying to do my best, trying to provide best.
Subscribe & press bell icon to get notifications.

Рекомендации по теме
Комментарии
Автор

09:16 - it didn't persist old state of other state managers, you used onPress = { directFunction() } this makes execution of function without even clicking on it. which caused rerendering and your component rendered 55 times and displayed an error. After you corrected with another arrow function () => directFunction()

howtofullstack