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

Implementing In-App Purchases using expo-iap in React Native Expo for Android/IOS

Implementing In-App Purchases using expo-iap in React Native Expo for Android/IOS

Tiempo de lectura: 4 minutosToday we’re going to learn how to implement in-app purchases using Expo IAP for Android or iOS on React Native. First we’re going to install the library we need (expo-iap): npx expo install expo-iap Now we need to add our code inside app.config.js: { “plugins”: [ “expo-iap” ] } Remember to create subscriptions inside Google … Read more

Implementing Google Login in Android with React Native and Expo and Validating with a Python Server

Implementing Google Login in Android with React Native and Expo and Validating with a Python Server

Tiempo de lectura: 4 minutosThis is how we can implement Google Sign in using React Native and Expo in a simple way. The first thing we will do is use this library @react-native-google-signin/google-signin The installation is: npx expo install @react-native-google-signin/google-signin We will configure it once installed. First we will create our handler in Typescript: html import React from “react”; … Read more

Implementing Request Tracking Transparency in iOS and AdMob Ad Permissions using React Native and Expo

Implementing Request Tracking Transparency in iOS and AdMob Ad Permissions using React Native and Expo

Tiempo de lectura: 2 minutosWe will today learn to implement request tracking transparency using React Native and Expo. To do this, we will create the following utils file: // utils/AdsPermissions.ts (or similar) import { Platform } from ‘react-native’; import mobileAds, { AdsConsent } from ‘react-native-google-mobile-ads’; import { getTrackingPermissionsAsync, PermissionStatus, requestTrackingPermissionsAsync } from ‘expo-tracking-transparency’; export async function solicitartPermissionATT(): Promise<boolean> { … Read more