├── .eslintrc ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .npmignore ├── CNAME ├── LICENSE ├── README.md ├── components ├── buttons │ ├── Button.js │ └── Link.js ├── inputs │ ├── Input.js │ └── Select.js └── views │ ├── Block.js │ ├── Container.js │ ├── Icon.js │ └── Text.js ├── docs ├── .nojekyll ├── CNAME ├── README.md ├── images │ ├── native_forgot.jpg │ ├── native_login.jpg │ ├── native_profile.jpg │ └── native_register.jpg └── index.html ├── examples ├── .babelrc ├── .gitignore ├── .watchmanconfig ├── App.js ├── __tests__ │ └── App-test.js ├── app.json ├── assets │ ├── fonts │ │ └── SpaceMono-Regular.ttf │ └── images │ │ ├── icon.png │ │ └── splash.png ├── components │ ├── StyledText.js │ ├── TabBarIcon.js │ └── __tests__ │ │ └── StyledText-test.js ├── constants │ ├── Colors.js │ └── Layout.js ├── navigation │ ├── AppNavigator.js │ └── MainTabNavigator.js ├── package.json └── screens │ ├── CameraScreen.js │ ├── ForgotScreen.js │ ├── LoginScreen.js │ ├── ProfileScreen.js │ └── RegisterScreen.js ├── index.js ├── package.json └── utils ├── api.js ├── constants.js ├── index.js └── storage.js /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | extends: 'universe', 3 | } -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | 5 | --- 6 | 7 | **Describe the bug** 8 | A clear and concise description of what the bug is. 9 | 10 | **To Reproduce** 11 | Steps to reproduce the behavior: 12 | 1. Go to '...' 13 | 2. Click on '....' 14 | 3. Scroll down to '....' 15 | 4. See error 16 | 17 | **Expected behavior** 18 | A clear and concise description of what you expected to happen. 19 | 20 | **Screenshots** 21 | If applicable, add screenshots to help explain your problem. 22 | 23 | **Desktop (please complete the following information):** 24 | - OS: [e.g. iOS] 25 | - Browser [e.g. chrome, safari] 26 | - Version [e.g. 22] 27 | 28 | **Smartphone (please complete the following information):** 29 | - Device: [e.g. iPhone6] 30 | - OS: [e.g. iOS8.1] 31 | - Browser [e.g. stock browser, safari] 32 | - Version [e.g. 22] 33 | 34 | **Additional context** 35 | Add any other context about the problem here. 36 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | 5 | --- 6 | 7 | **Is your feature request related to a problem? Please describe.** 8 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 9 | 10 | **Describe the solution you'd like** 11 | A clear and concise description of what you want to happen. 12 | 13 | **Describe alternatives you've considered** 14 | A clear and concise description of any alternative solutions or features you've considered. 15 | 16 | **Additional context** 17 | Add any other context or screenshots about the feature request here. 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | 6 | npm-debug.log* 7 | yarn-debug.log* 8 | yarn-error.log* 9 | yarn.lock 10 | .DS_Store 11 | CNAME 12 | /screens 13 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | CNAME 2 | /examples 3 | /docs 4 | yarn.lock 5 | .expo -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | native.react-ui-kit.com -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 React UI Kit 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # **React Native UI Kit** 2 | React Native components based on React UI Kit 3 | 4 | Offical documentation of `React UI Kit Native` made for `React Native` applications and you can easily use the components in your project. A lot of predefined styles & properties so it's perfectly fit for prototyping of your app UI. 5 | 6 | - [React UI Kit Native - Website](https://native.react-ui-kit.com) 7 | 8 | Support: [contact@react-ui-kit.com](mailto:contact@react-ui-kit.com) 9 | 10 | ### **Setup** 11 | #### Install & usage 12 | 1. Install local module with react-ui-kit-native (it will also download all required dependencies) 13 | 14 | ```cmd 15 | npm install react-ui-kit-native --save 16 | ``` 17 | 2. Use any component you want, all available props are available separately for each component below in this documentation. For example: 18 | 19 | ```javascript 20 | import React from 'react'; 21 | import { Button } from 'react-ui-kit-native'; 22 | 23 | export default class MyButton extends React.Component { 24 | render() { 25 | return ( 26 |