react-native-ui-doj
v1.0.28
Published
A Simple and easy to use react native ui library for react native
Downloads
24
Maintainers
Readme
react-native-ui-doj
An Open Source UI Library made for react native. It is very simple to use and customize.
Quick start
- All our components start with the letter 'D',
- All component names follow the camelCase syntaxt
- They are easy to use
- They are 100% customiseable
- You can add your own styles just like how you would add styles to your normal react native components, except that here you pass them as props.
Install
yarn add react-native-ui-doj
# or
npm install --save react-native-ui-doj
Usage
// App.js
import { Dbutton, Dtext } from "react-native-ui-doj";
export function App(props) {
return (
<>
<Dbutton onPress={handleButton}>
<Dtext>Click me</Dtext>
</Dbutton>
</>
);
}