React Native with React Hooks and Redux Boilerplate

Moses Esan
Mesan Digital
Published in
3 min readSep 18, 2019

--

Boilerplate for a React Native iOS and Android app using React Hooks and Redux.

View project on Github

Demo

Demo

Getting Started

If this is your first time creating a React Native app, then this step is for you. You have to make sure you have Node and npm or yarn installed. For this project, I will be using yarn and Expo.

“Expo is a set of tools, libraries and services you can use to build native iOS and Android apps faster than ever before.” — Expo Documentation

There are many advantages to using Expo, one being that it allows you to start a project without installing or configuring any tools to build native code — no Xcode or Android Studio installation required and you can install the Expo app on your iOS or Android phone for testing.

Before beginning, globally install Expo CLI using npm or yarn.

Open up your terminal and run one of the commands below depending on whether you are using npm or yarn.

$ npm install -g expo-clior$ yarn global add expo-cli

Step 1: Create Project

--

--