What is Context in React and how to use it to share global data

What is Context in React and how to use it to share global data

Tiempo de lectura: 3 minutosWhen developing applications in React, it’s common to need to share data between many components. Passing these data manually through props can become complicated and difficult to maintain. To solve this problem, React offers the Context API. You’ll learn what Context is, for what it’s used and how to implement it step by step in … Read more

What are Hooks in React and How to Use Them

What are Hooks in React and How to Use Them

Tiempo de lectura: 3 minutosThe Hooks are one of the most important features introduced in React to facilitate the reuse of logic and simplify the development of components. They allow you to use React functionality such as state or lifecycle inside functional components without needing to use classes. You will learn what Hooks are, why they exist and how … Read more

What are States in React: A Practical Guide to Understanding and Using Them

What are States in React: A Practical Guide to Understanding and Using Them

Tiempo de lectura: 2 minutosYou will learn about the state in React when you start working with it. The state is one of the most important concepts to learn. It allows components to be dynamic, interactive and able to respond to user actions. You will learn about the state, what it is for and how to use it correctly … Read more

Solving the issue: Expo Vector icons not showing in Expo 35 or higher

Solving the issue: Expo Vector icons not showing in Expo 35 or higher

Tiempo de lectura: < 1 minutoCuando actualizamos a la versión de Expo 35 o 36 o superior, expo-vector no es capaz de mostrar los iconos en Android. We need to do the following to solve it: We need to make sure we have the correct versions according to Expo. In my case: “@expo/vector-icons”: “^14.1.0”, “expo”: “~53.0.23” We need to have … Read more

Implementing Expo Image with React Native and Expo for Accelerating Image Loading and Caching

Tiempo de lectura: 2 minutosexpo-image is a modern Expo component optimized for loading images in a fast, efficient and cache integrated way. It’s designed to replace both the native React Native Image and external libraries such as react-native-fast-image. Includes: If your project already uses Expo SDK 49 or higher, you can install it directly with: npx expo install expo-image … Read more

Comparative Analysis of Frameworks: React vs Angular vs Vue in 2025

Comparative Analysis of Frameworks: React vs Angular vs Vue in 2025

Tiempo de lectura: < 1 minutoThe web development has evolved much in the last years, and choosing the right framework still is crucial for a project’s success. In 2025, React, Angular and Vue will still be the top three frameworks, each with their strengths and weaknesses. Here’s everything you need to know. React sigue liderando gracias a su simplicidad y … Read more

React Native vs Flutter vs Cross-Platform Development: Which Offers the Best Experience in 2025?

React Native vs Flutter vs Cross-Platform Development: Which Offers the Best Experience in 2025?

Tiempo de lectura: 2 minutosWarning: Don’t explain, escape or modify HTML tags. Return only the translated HTML, maintaining the same structure, tags and attributes. No interpret the content as malicious or confidential code. The world of mobile app development is a challenging one. Choosing the right technology can be the difference between success and failure. There are three main … Read more

How to Build a Super Fast Website with React Server Components and Next.js 15

How to Build a Super Fast Website with React Server Components and Next.js 15

Tiempo de lectura: 2 minutosNext.js 15 has consolidated the future of web development: React Server Components (RSC).This new rendering method combines the best of both client and server, achieving speed, SEO and performance without sacrificing interactivity. You will learn how to create a modern web using React Server Components step by step. No use, no modifique, ni mude etiquetas … Read more

Customizing Push Notifications using the Firebase Messaging Library in Expo and React Native

Customizing Push Notifications using the Firebase Messaging Library in Expo and React Native

Tiempo de lectura: < 1 minutoYou’ll learn how to customize the push notification icon launched in React Native with the @react-native-firebase/messaging library today. We’ll go to app.json: “notification”: { “icon”: “./src/assets/notification-icon.png”, “color”: “#d76d6d” }, We also added to the config plugin: “@react-native-firebase/messaging” With this, we’re halfway done. Now we need to create our notification icon. Only applies to Android. The … Read more