Getting Started
The aim of React Native Elements is to provide an all-in-one UI kit for creating apps in react native. There are many great ui components made by developers all around open source. React Native Elements takes the hassle of assembling these packages together by giving you a ready made kit with consistent api and look and feel.
Stable#
npm install react-native-elements
# or with yarnyarn add react-native-elementsBleeding Edge#
npm install https://github.com/react-native-elements/react-native-elements#dist
# or with yarnyarn add https://github.com/react-native-elements/react-native-elements#distInstall react-native-vector-icons#
Expo or create-react-native-app projects include react-native-vector-icons out of the box, hence this step can be skipped.
If your project is a standard React Native project created using
react-native init (it should have an ios/android directory), then you need to install react-native-vector-icons.
Or if you encounter the following error.
Note: If you see the
UNMET PEER DEPENDENCYwarning for react-native-vector-icons like below, you can ignore it as react-native-vector-icons is already installed by expo or crna.
Otherwise run the following command:
Manual linking of react-native-vector-icons is not necessary if you're using react-native@0.60.0 or above since it is done automatically. This will throw an error though it won't prevent the application from running. To fix this you'll simply have to run
react-native unlink react-native-vector-iconsand the process will run as expected.
npm install react-native-vector-icons
# or with yarnyarn add react-native-vector-iconsLink the dependency
npx react-native link react-native-vector-iconsIf you have any issues installing react-native-vector-icons, check out their installation guide here or debug it using this issue.
Install react-native-safe-area-context#
If you have already installed react-native-safe-area-context as a dependency for your project you can skip this step. Otherwise run the following command:
npm install react-native-safe-area-context# or with yarnyarn add react-native-safe-area-contextManual linking of react-native-safe-area-context is not necessary if you're using react-native@0.60.0 or above since it is done automatically. This will throw an error though it won't prevent the application from running. To fix this you'll simply have to run
react-native unlink react-native-safe-area-contextand the process will run as expected.
react-native link react-native-safe-area-contextIt is required to add the SafeAreaProvider to the outside of the app. The suggested way to do this is
the following:
import { SafeAreaProvider } from 'react-native-safe-area-context';
function App() { return <SafeAreaProvider>...</SafeAreaProvider>;}