https://github.com/lunatiquecoder/expo-drax-example
https://github.com/lunatiquecoder/expo-drax-example
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/lunatiquecoder/expo-drax-example
- Owner: LunatiqueCoder
- License: mit
- Created: 2023-11-12T15:17:48.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-10-13T19:35:25.000Z (over 1 year ago)
- Last Synced: 2025-05-08T01:07:20.233Z (about 1 year ago)
- Language: TypeScript
- Size: 472 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# react-native-drax-example
**A demonstration of a drag-and-drop system for React Native**
[](CODE-OF-CONDUCT.md)
## Overview
[Drax](https://github.com/nuclearpasta/react-native-drax) is a declarative drag-and-drop system for React Native, written in TypeScript. This repository contains a React Native application which uses the `react-native-drax` library to demonstrate several examples for reference.
#### Contents
* [Screenshots](#screenshots)
* [Usage](#usage)
* [Contributing](#contributing)
* [Code of Conduct](#code-of-conduct)
* [License](#license)
(Click images to see larger versions.)
For the time being, these instructions assume that your environment is already prepared for React Native development. Simply clone the repository, install the dependencies, and run the application as usual. For example:
```
$ git clone https://github.com/nuclearpasta/react-native-drax-example.git
$ cd react-native-drax-example
$ yarn
$ cd ios; pod install; cd ..
$ yarn run ios
```
Note that during the build you will see an error like this:
```
error React Native CLI uses autolinking for native dependencies, but the following modules are linked manually:
- react-native-vector-icons (to unlink run: "react-native unlink react-native-vector-icons")
```
This is expected and will continue until [react-native-vector-icons](https://github.com/oblador/react-native-vector-icons/) has [full autolinking support](https://github.com/oblador/react-native-vector-icons/issues/1185). You can ignore the message.
See the [Contribution Guidelines](https://github.com/nuclearpasta/react-native-drax/blob/master/CONTRIBUTING.md) in the `react-native-drax` repository for details.
Please note that this project is released with a [Contributor Code of Conduct](https://github.com/nuclearpasta/react-native-drax/blob/master/CODE-OF-CONDUCT.md). By participating in this project you agree to abide by its terms.
This software is licensed under the [MIT License](LICENSE.md).


