@buildersbank/fluid-react-native
v0.8.2
Published
Builders React Native for Fluid Design System
Downloads
4
Maintainers
Readme
@buildersbank/fluid-react-native
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
- depend on it:
yarn add @buildersbank/fluid-react-native
- 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>
- use it
import { Button } from '@buildersbank/fluid-react-native';