0.1.0 • Published 2 years ago

react-native-doodle v0.1.0

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

A simple hand drawn theme for React Native

Introduction

React Native component wrapper for hand drawn theming.

This project inspired by Doodle CSS (By Chris McCormick).

Installation

npm install react-native-doodle
# or yarn
yarn add react-native-doodle

Usage

import { SafeAreaView, Text } from 'react-native-doodle';
import { View, Input, Button } from 'react-native-doodle';

const App = () => {
  return (
    <SafeAreaView>
      <View style={{ flex: 1 }}>
        <Button style={{ padding: 10 }}>
          <Text>Press Me!</Text>
        </Button>
        <Input
          containerStyle={{ padding: 10 }}
          placeholder="Type something.."
        />
      </View>
    </SafeAreaView>
  );
};

export default App;

License

MIT