A delicious component library for React Native based un styled system and inspired by Charka UI
To use React Native Ramen components, all you need to do is install the rn-ramen
package and its peer dependencies:
$ yarn add @rn-ramen @emotion/react@next @emotion/native@next emotion-theming@next
# or
$ npm install @rn-ramen @emotion/react@next @emotion/native@next emotion-theming@next
To start using the components, please follow these steps:
- Wrap your application with the
ThemeProvider
provided by rn-ramen.
import { ThemeProvider } from "rn-ramen".
// Do this at the root of your application
const App = ({ children }) => (
<ThemeProvider>
{children}
</ThemeProvider>
);
MIT