# rntpc_react-native-root-modal
**Repository Path**: openharmony-sig/rntpc_react-native-root-modal
## Basic Information
- **Project Name**: rntpc_react-native-root-modal
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: https://gitee.com/openharmony-sig/rntpc_react-native-root-modal
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2024-10-14
- **Last Updated**: 2025-05-07
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# 🚨 **重要提示 | IMPORTANT**
>
> **⚠️ 此代码仓已归档。新地址请访问 [rntpc_react-native-root-modal](https://gitcode.com/openharmony-sig/rntpc_react-native-root-modal)。| ⚠️ This repository has been archived. For the new address, please visit [rntpc_react-native-root-modal](https://gitcode.com/openharmony-sig/rntpc_react-native-root-modal).**
>
---
>
# react-native-root-modal [](http://badge.fury.io/js/react-native-root-modal)
------------------------
## Features
1. Pure javascript solution, easy to install.
2. Support both `React element` way and `javascript class` way to invoke, easy to use.
3. Inherited from `` you can set your own style or animation or anything you can do with View.
4. ~~redux support~~.
## Breaking changes
### 5.x
From 5.x redux support is not enabled by default.
The redux support can be enabled by setting a redux context wrapper.
```
import { setSiblingWrapper } from 'react-native-root-siblings';
import { Provider } from 'react-redux';
// const store = ... get store;
// Call this before using redux context inside RootSiblings.
setSiblingWrapper((sibling) => {sibling});
```
## Install
`npm install react-native-root-modal`
## Usage
Import library any where inside your code before `AppRegistry.registerComponent` is called.
```
import Modal, { AnimatedModal, ModalManager } from 'react-native-root-modal';
```
Invoked by `React element` way.
```
....other elements before
... You can add anything inside
....other elements after
```
Just put `` element anywhere, And it will be front of other elements.
And you can set `` element\`s style or other properties inherited from `` element
Or you can invoke it by `JavaScript class` way
Import modal Manager class.
```
import { ModalManager } from 'react-native-root-modal';
```
Invoke it.
```
// Create a Modal element on screen.
let modal = new ModalManager(
...modal contents here.
);
// Update (replace) the modal element which is already existed.
modal.update(
...other modal contents here.
);
// Destroy it
modal.destroy();
```
## Example
### IOS
----

### Android
----

## Notice
Modal element created by this library can\`t cover other `native` Modal elements,like: [Official Modal Element](http://facebook.github.io/react-native/docs/modal.html#content)