An Open Source UI Library made for react native. It is very simple to use and customize.
- 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.
yarn add react-native-ui-doj
# or
npm install --save react-native-ui-doj
// App.js
import { Dbutton, Dtext } from "react-native-ui-doj";
export function App(props) {
return (
<>
<Dbutton onPress={handleButton}>
<Dtext>Click me</Dtext>
</Dbutton>
</>
);
}