Top 5 React Native Component libraries in 2020

Top 5 React Native Component libraries in 2020 for your app ui

Top 5 React Native Component Libraries For UI/UX Design in Your App.

react native ui Libraries to use in your project

1. React Native Ui Kitten
   To use in your apps follow below steps:

   Run or install : npm un -g react-native-cli && npm i -g @react-native-community/cli npx
App.js:

import React from 'react';
import { ApplicationProvider, Layout, Text } from '@ui-kitten/components'; import { mapping, light as lightTheme } from '@eva-design/eva'; const HomeScreen = () => ( <Layout style={{flex: 1, justifyContent: 'center', alignItems: 'center'}}> <Text category='h1'>HOME</Text> </Layout> ); const App = () => ( <ApplicationProvider mapping={mapping} theme={lightTheme}> <HomeScreen /> </ApplicationProvider> ); export default App;

For more info:https://akveo.github.io/react-native-ui-kitten/#/home


You may like these posts


2. Native Base
  Run or install: npm install native-base --save
For more info:http://nativebase.io/

3. React native Paper
Run or install :npm install react-native-paper

4. Nachos UI
Run or install :npm install nachos-ui

5. React Native Elements
Run or install :npm install react-native-elements