Introdução

Para quem busca desenvolver aplicações mobile, é quase inevitável se deparar com o React Native, uma poderosa tecnologia que permite a criação de apps, tanto para Android, como para IOS. Ao se deparar com as etapas iniciais, muitos desenvolvedores ficam confusos principalmente com a configuração do ambiente para desenvolver com a React Native CLI e por isso acabam optando pelo Expo que traz algumas limitações durante a criação do projeto.
Pensando nisso, esse artigo busca trazer de forma clara como configurar e instalar as ferramentas necessárias para começar a desenvolver com o React Native no Windows. Lembrando que, tecnologias e suas documentações estão constantemente sendo atualizadas, por isso é sempre importante seguir tutoriais mas estar sempre com a documentação aberta em tela, beleza?


primeiro paragrafo

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Continuação do primeiro

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Homem programando
foto - unsplash

segundo paragrafo

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.

Continuação do segundo paragrafo

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.

tsx
  const handleNextPage = () => {
    if (currentPage < pages.length) {
      setCurrentPage(currentPage + 1);
    }
  };

  const handlePrevPage = () => {
    if (currentPage > 1) {
      setCurrentPage(currentPage - 1);
    }
  };

O H4 do segundo parágrafo

Esse aqui é o h4 e teste de conteudooooo