3 Steps to Use React Native Elements in React Native

shrey vijayvargiya
Geek Culture
Published in
3 min readJul 15, 2021

--

Testing Another UI library for React Native 😁, 3 simple steps to get ready with basic MVP

Photo by Alejandro Ortiz on Unsplash

Under the Hood

The story commence when I started providing boilerplates for almost all the UI libraries available for react applications. In order to check all the boilerplates below is the link to reach out.

Click to Check out all the boilerplates

Overview

A few months back, I’ve covered a story about the top 5 UI libraries in React Native. And in today’s story, we will be working with one of them i.e. React Native Elements.

Key Steps

  • Install the react-native-elements using npm
  • Wrap the provider to the root of the element
  • Start using elements in the application

Yes, those keys steps are small and simple and that is the agenda of today’s story.

Installing the library

I am using it already or ready to use react native example. And by running the below command you can install the UI library.

yarn add react-native-elements

You also need to install the dependency to use to components.

--

--