Onur Taşkıran LogoOnur Taskiran's Personal BlogOnur Taskiran Blog
HomeAboutProjectsServicesContact
HomeAboutProjectsServicesContact
Onur Taşkıran LogoOnur Taskiran's Personal BlogOnur Taskiran Blog
HomeAboutProjectsServicesContact
HomeAboutProjectsServicesContact

Posts tagged with "performance-optimization"

Mastering React Native Animations and Performance

Mastering React Native Animations and Performance

28 April 202511 min readMobile Development

After building several React Native applications, I discovered that creating smooth animations and optimizing performance are crucial for delivering a truly native-feeling experience. In this guide, I'll share advanced techniques for creating fluid animations and ensuring your React Native apps run smoothly even on older devices.

#React Native#Animations#Performance Optimization+4 more
React Query

React Query

07 December 20239 min readWeb Programming

React Query is an easy-to-use tool, especially in applications that require complex state management and asynchronous data exchange. The library offers a number of features to optimize data management processes in React applications. React Query facilitates operations such as fetching data...

#React#React Query#State Management+3 more
React Suspense

React Suspense

15 November 20232 min readWeb Programming

React Suspense is a powerful tool that can be used to enhance React applications for better performance and better user experience.To lazily load our components or incrementally load our application, we use a tool called suspense. React Suspense is a feature that allows React applications to better...

#React#React Suspense#Lazy Loading+3 more
React useTransition Hook

React useTransition Hook

14 November 20233 min readWeb Programming

React is fast by default. So the useTransition hook has specific use cases and is probably not something you will use in all your applications. useTransition hook is a hook available in React 18 and above and is used to manage asynchronous operations. This hook is designed to provide better performance and faster user experience...

#React#useTransition Hook#Performance Optimization+4 more
React useMemo Hook

React useMemo Hook

29 September 20234 min readWeb Programming

React's useMemo hook is a hook used to optimize computationally expensive operations. The way useMemo works is very similar to use callback. The difference between useCallback and use memo is that it stores the value we get back from the function. So UseCallback is used to memorize a function...

#React#useMemo Hook#Performance Optimization+3 more
React UseCallback Hook

React UseCallback Hook

24 September 20233 min readWeb Programming

In React, we may sometimes experience slowdown problems due to unnecessary component renderings. There are many ways to solve these problems in React. We do not use UseCallback very often in our projects, but when we do, our application is much better in terms of performance.

#React#UseCallback Hook#Performance Optimization+3 more
Previous12Next