Package Exports
- nottinderuikit
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (nottinderuikit) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
WIP ⚠️
not-tinder-ui
A Tinder like UI set of components for react-native

Get Started
Instalation:
Using npm, run: npm install nottinderuikit
Using yarn, run: yarn add nottinderuikit
Usage:
Start using the components in your app:
import {RoundedButton} from 'nottinderuikit';
import AntDesign from '@expo/vector-icons/AntDesign';
<RoundButton onPress={() => horizontalSwipe(true)} shadow border>
<AntDesign name='heart' size={30} color={colors.green} />
</RoundButton>
Components Included:
bla bla bla
Demo app:
We have developed a Tinder like react-native app using this base components, the code is available here
Collaborators section:
Installing git hooks on your local repo:
In order to get this we included a simple sh script that copies the hooks on the scripts/git-hooks
on the .git/hooks
folder of this repo and makes them executables.
You just need to run: sh scripts/install-hooks
on the root directory of this repo.
🤪 If you get an error when running this command, you can just copy the content of the scripts/git-hooks
folder on the .git/hooks
folder of this repo. Then you'll need to make those files executables by running chmod +x .git/hooks/*
on the terminal (remember to be steped on the root directory of this repo)