0.4.41 • Published 2 years ago

@platformbuilders/react-native-elements v0.4.41

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

@platformbuilders/react-native-elements

Build Status npm MIT Docusaurus Firebase Deploy

Welcome to the @platformbuilders/elements package here you will find out all of our components shared with the community

Whats the idea of this repository

Its a place that we can share a little bit of our code base and show how we work on our projects with our components!

How can i use the library?

Here's how you add our dependencie to your project @platformbuilders/elements

  1. depend on it:
yarn add @platformbuilders/react-native-elements
  1. import the ThemeProvider from styled-components and provide the Theme following the ThemeType definition.
import { ThemeProvider } from 'styled-components';
import { ThemeType } from '@platformbuilders/react-native-elements';

const theme: ThemeType = { ... };

<ThemeProvider theme={theme}>
    <App />
</ThemeProvider>
  1. use it
import { Button } from '@platformbuilders/react-native-elements';