Skip to content

react-native-simple-widgets/react-native-simple-elements

Repository files navigation

react-native-simple-elements

Storybook

Get Started

Installation

npm install react-native-simple-elements

Usage

import ThemeProviver from "react-native-simple-elements/components/theme/Provider";
import Button from 'react-native-simple-elements/components/Button';

<ThemeProviver>
    <Button
        onPress={() => console.log("Hello")}
    >
        Press Me
    </Button>
</ThemeProviver>