React Native Elements
a collection of React Native UI Elements and components.
Cross Platform React Native UI Toolkit.
Live Demo
https://expo.io/@monte9/react-native-elements-app
Documentation
https://react-native-training.github.io/react-native-elements/
Installation
-
If you are using
create-react-native-app
or Expo, follow these instructions. -
If your project is a standard React Native project (if you have an
ios/android directory and created it withreact-native init
), follow these installation instructions.
Usage
Start using the components or try it on Snack here.
import { Button } from 'react-native-elements';
<Button
raised
icon={{name: 'home', size: 32}}
buttonStyle={{backgroundColor: 'red', borderRadius: 10}}
textStyle={{textAlign: 'center'}}
title={`Welcome to\nReact Native Elements`}
/>