react-native-doodle
TypeScript icon, indicating that this package has built-in type declarations

0.1.0 • Public • Published
title

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).

preview

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

Readme

Keywords

none

Package Sidebar

Install

npm i react-native-doodle

Weekly Downloads

2

Version

0.1.0

License

MIT

Unpacked Size

52.1 kB

Total Files

58

Last publish

Collaborators

  • ghlee