# react-native-ez-modal

> ## Getting started

Latest version **1.0.1** (published 2019-06-20) · 0 weekly downloads

## Install

```sh
npm install react-native-ez-modal
pnpm add react-native-ez-modal
yarn add react-native-ez-modal
bun add react-native-ez-modal
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2019-06-20 |
| First published | 2019-04-29 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 33.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | rickyfabians |
| Keywords | react-native |

## Links

- npm: https://www.npmjs.com/package/react-native-ez-modal
- npm.io page: https://npm.io/package/react-native-ez-modal

## Recent versions

- 1.0.1 (latest) — 2019-06-20
- 1.0.0 — 2019-04-29

## README

# react-native-ez-modal

## Getting started

`$ npm install react-native-ez-modal --save`

### Mostly automatic installation

`$ react-native link react-native-ez-modal`

### Manual installation


#### iOS

1. In XCode, in the project navigator, right click `Libraries` ➜ `Add Files to [your project's name]`
2. Go to `node_modules` ➜ `react-native-ez-modal` and add `RNEzModal.xcodeproj`
3. In XCode, in the project navigator, select your project. Add `libRNEzModal.a` to your project's `Build Phases` ➜ `Link Binary With Libraries`
4. Run your project (`Cmd+R`)<

#### Android

1. Open up `android/app/src/main/java/[...]/MainActivity.java`
  - Add `import com.reactlibrary.RNEzModalPackage;` to the imports at the top of the file
  - Add `new RNEzModalPackage()` to the list returned by the `getPackages()` method
2. Append the following lines to `android/settings.gradle`:
  	```
  	include ':react-native-ez-modal'
  	project(':react-native-ez-modal').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-ez-modal/android')
  	```
3. Insert the following lines inside the dependencies block in `android/app/build.gradle`:
  	```
      compile project(':react-native-ez-modal')
  	```

#### Windows
[Read it! :D](https://github.com/ReactWindows/react-native)

1. In Visual Studio add the `RNEzModal.sln` in `node_modules/react-native-ez-modal/windows/RNEzModal.sln` folder to their solution, reference from their app.
2. Open up your `MainPage.cs` app
  - Add `using Ez.Modal.RNEzModal;` to the usings at the top of the file
  - Add `new RNEzModalPackage()` to the `List<IReactPackage>` returned by the `Packages` method


## Usage
```javascript
import EzModal from 'react-native-ez-modal';

// TODO: What to do with the module?
<EzModal> 
	<Text>Ez Modal </Text>
</EzModal>
```

---
_Source: https://npm.io/package/react-native-ez-modal · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
