React

How To Handle DOM and Window Events with React — step-by-step Javascript tutorial on Progressive Robot

How To Handle DOM and Window Events with React

In JavaScript apps using the React front-end library, you can use event handlers to update state data, trigger prop changes, or prevent default browser actions. To do this, React uses a SyntheticEvent wrapper instead of the native Event interface. In this tutorial, you’ll build several sample components that handle user events. You’ll learn how to add event handlers to components, pull information from the SyntheticEvent, and add and remove Window event listeners.

Read more
Cómo usar Font Awesome 5 con React — step-by-step Javascript tutorial on Progressive Robot

Cómo usar Font Awesome 5 con React

Font Awesome es un kit de herramientas para sitios web que proporciona iconos y logotipos de redes sociales. React es una biblioteca de codificación que usa JavaScript para crear interfaces de usuario. Aunque el equipo de Font Awesome ha creado un componente React para promover la integración, existen algunos fundamentos para comprender Font Awesome 5 y cómo se estructura. En este tutorial aprenderá las formas de usar el componente React Font Awesome.

Read more
How To Manage State with Hooks on React Components — step-by-step Javascript tutorial on Progressive Robot

How To Manage State with Hooks on React Components

React Hooks are a broad set of tools in the React front-end JavaScript library that run custom functions when a component’s props change. Since this method of state management doesn’t require you to use classes, developers can use Hooks to write shorter, more readable code that is easy to share and maintain. Throughout this tutorial, you’ll learn how to set state using the useState and useReducer Hooks, using a product page component with a shopping cart as an example.

Read more
Como usar o Axios com o React — step-by-step Javascript tutorial on Progressive Robot

Como usar o Axios com o React

O Axios é um cliente HTTP leve baseado em promessas. Neste artigo, você irá explorar exemplos de como usar o Axios para acessar a famosa API JSON Placeholder dentro de um aplicativo React.

Read more
How To Create Animated React Apps With React Spring — step-by-step Javascript tutorial on Progressive Robot

How To Create Animated React Apps With React Spring

Animations add life to your applications and improve the overall user experience. React Spring is an animation package that uses spring-like physics in its core animations to make it easily configurable. In this tutorial, you will create a sliding and fading animation in a React app with React Spring.

Read more
Использование маршрутизации React Navigation в React Native — step-by-step Javascript tutorial on Progressive Robot

Использование маршрутизации React Navigation в React Native

React Navigation — это популярная библиотека для организации маршрутизации и навигации в приложении React Native. С помощью этого руководства вы создадите приложение социальной сети для изучения возможностей навигации по экранам мобильного приложения с помощью react-navigation.

Read more
Comment utiliser Axios avec React — step-by-step Javascript tutorial on Progressive Robot

Comment utiliser Axios avec React

Axios est un client HTTP léger, basé sur Promise. Dans cet article, vous explorerez des exemples d’utilisation d’Axios pour accéder à la populaire API JSON Placeholder au sein d’une application React.

Read more
CHAT