react native

5th December 2024

React Native animation libraries

In a mobile app, animations can greatly impact user experience in terms of interactions and engagement. Animations can quickly become one of the key factors that users love engaging with on your mobile app. While building a React Native app, it is essential to think of user interactions. Animating some of the user actions can help improve user engagement within the app. In this post, we will cover a list of open source animation libraries for React Native that you can use for your next app, and compare them based on functionalities, ease of use, and popularity. React Native Reanimated […]
5th November 2024

Choosing Between type and interface in React

However, as I delved deeper into React and wrestled with complex projects, I realized that the ‘interface as default’ approach wasn’t always fitting. My explorations and projects led me to question that initial guidance. After years navigating the React trenches and countless hours of research, I’ve come to understand that the choice between “type” and “interface” isn’t black and white. The real answer is, it depends. If you’re using TypeScript with React, pondering whether to use “type” or “interface” to define your prop types, you’re not alone. Both have unique advantages and applications in the ever-evolving landscape of React development. […]