Javascript

Comment mettre en œuvre le défilement fluide dans React — step-by-step Javascript tutorial on Progressive Robot

Comment mettre en œuvre le défilement fluide dans React

Qu’est-ce que le défilement fluide ? Au lieu de cliquer sur un bouton et d’être instantanément amené à une autre partie de la (même) page, l’utilisateur y est guidé par une animation de défilement. C’est l’une de ces caractéristiques subtiles sur un site qui fait une différence esthétique.

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

How To Manage State on React Class Components

In React, state refers to a structure that keeps track of how data changes over time in your application. Managing state is a crucial skill in React because it allows you to make interactive web applications. In this tutorial, you’ll run through an example of managing state on class-based components. This tutorial will first show you how to set state using a static value and then how to set a state as the current state, using a product page component as an example.

Read more
How To Set Up a Gatsby Project with TypeScript — step-by-step Javascript tutorial on Progressive Robot

How To Set Up a Gatsby Project with TypeScript

TypeScript is a superset of JavaScript that adds optional static typing at build time, which cuts down on debugging runtime errors. It’s static-typing abilities go well with a static-site generator like Gatsby, and Gatsby has built-in support for coding in TypeScript. In this tutorial, you’re going to use Gatsby’s built-in capabilities to configure a Gatsby project for TypeScript.

Read more
How To Use Decorators in TypeScript — step-by-step Javascript tutorial on Progressive Robot

How To Use Decorators in TypeScript

Decorators are a way to decorate members of a class, or a class itself, with extra functionality. This tutorial covers creating decorators in TypeScript for classes and class members, and also how to use them.

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

Como usar o Font Awesome 5 com o React

O Font Awesome é um kit de ferramentas para sites que oferece ícones e logotipos. O React é uma biblioteca de programação que utiliza o JavaScript para criar interfaces de usuários. Embora o time do Font Awesome tenha criado um componente do React para promover a integração, ainda existem alguns fundamentos a serem compreendidos sobre o Font Awesome 5 e como ele é estruturado. Neste tutorial, você irá aprender as maneiras de usar o componente Font Awesome do React.

Read more
CHAT