A Friendly Guide to React Hooks

Welcome, fellow builders, to a journey into the world of React Hooks! Should you’ve been working with React for some time, you might need heard about Hooks, however maybe you are not totally positive what they’re or learn how to use them successfully. Worry not! By the tip of this text, you will have a […]

Fluxo de autenticação no React Native usando Expo Router

Quem já trabalhou com rotas com Expo ou React Native, sabe que o React Navigation é a forma padrão de lidar com navegação! No entanto, conforme mais telas você vai criando no seu app, o código utilizado pode ficar bem grande, com processos manuais que precisam de muitas linhas de código para serem feitos. Emblem, […]

Step-by-Step Guide to Creating an Expo Monorepo with Nx

This weblog will present you create an Expo monorepo with Nx. On this instance, you may be creating two Expo apps in a monorepo with @nx/expo: one reveals random details about cats, and the opposite reveals random details about canine. As proven within the above screenshots, these two apps have the identical branding and reuse […]

How to Add Blurred Text in React Native

If you happen to’re searching for a trendy strategy to conceal sure info in your React Native app, including blurred textual content could be a visually interesting resolution. On this tutorial, I am going to present you the way to combine blurred textual content into your elements utilizing React Native simply. Step 1: Set up […]

Don’t Pay for EAS! How to Set Up an EAS Local Build on GitHub Actions

You are out of credit! Must you pay for EAS? When you’re a React Native developer utilizing Expo, you is perhaps conversant in the comfort of Expo Utility Companies (EAS). EAS gives a set of instruments that streamline the method of growing and deploying your React Native apps. One disadvantage of EAS is the worth, […]

Easier way to make a responsive app: react native full responsive v2 is here!

Nearly a 12 months in the past, I wrote an article titled “The right way to make full responsive our React Native purposes?” wherein I mentioned the need of responsiveness and the challenges that exist. I additionally introduced the discharge of react-native-full-responsive model 1.x.x. At this time, I wish to introduce a brand new characteristic […]

Comprehensive Comparison of Electron and Flutter: Choosing the Right Cross-Platform Development Framework for Your Project

1. Preface In as we speak’s various software program growth panorama, each Electron and Flutter are common frameworks utilized by builders to construct cross-platform desktop and cellular purposes. Electron is primarily used for creating desktop purposes, whereas Flutter was initially designed for cellular app growth however now additionally helps desktop and net. This text will […]

Ultimate Cross-Platform Framework Selection: Flutter or React Native

1. Preface In at the moment’s cellular software improvement discipline, the selection of cross-platform framework has turn out to be an essential determination for a lot of groups. Flutter and React Native, because the main cross-platform cellular software improvement frameworks available on the market, every have their distinctive options and benefits. This text will delve […]

Running react native testing 3x faster

I simply made react-native testing 3x sooner than once I was utilizing babel-jest! babel-jest (61s) react-native-fast-jest (23s) use? 1. Set up react-native-fast-jest npm i –save-dev react-native-fast-jest Enter fullscreen mode Exit fullscreen mode 2. Configure .swcrc on the foundation like under. { “jsc”: { “parser”: { “syntax”: “typescript”, “jsx”: true, “tsx”: true, “dynamicImport”: false, “privateMethod”: false, […]