0.8.2 • Published 1 year ago

@buildersbank/fluid-react-native v0.8.2

Weekly downloads
-
License
-
Repository
github
Last release
1 year ago

@buildersbank/fluid-react-native

Build Status npm MIT Docusaurus Firebase Deploy

Welcome to the @buildersbank/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 @buildersbank/elements

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

const theme: ThemeType = { ... };

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