Maintaining immutability when dealing with objects and arrays is very important in React. It ensures that the DOM updates correctly and predictably. But when we have nested data structures, maintaining immutability in our data can get ugly, very fast. This article explores 3 approaches to immutability — doing it natively, using ImmutableJS (a library which … Continue reading Native Vs. ImmutableJS Vs. Immer — Are Libraries the Way-to-go For Immutability in React?
blog
Swift UI — The Next Step of iOS Designing
Hello folks, as we all know it's been some time now since SwiftUI was launched by Apple in WWDC 2019. Also it's becoming mature in its components and stability with every release. So whats all the hype about ? How its better than our long lived friend UIKit. Let's check out. Problem with Traditional UIKit … Continue reading Swift UI — The Next Step of iOS Designing
Learn About Immutability with Immer in React
In React applications the most important part is the application state. We can maintain local state within the component or global state across the application using Redux. Managing the state becomes crucial as we may have inconsistent app behavior or have bugs if the state is not managed properly. So while dealing with the state … Continue reading Learn About Immutability with Immer in React
