Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beefe/react-native-popupwindow
Android PopupWindow for react-native module
https://github.com/beefe/react-native-popupwindow
Last synced: 3 months ago
JSON representation
Android PopupWindow for react-native module
- Host: GitHub
- URL: https://github.com/beefe/react-native-popupwindow
- Owner: beefe
- Created: 2016-02-26T08:45:54.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-02T03:47:59.000Z (almost 8 years ago)
- Last Synced: 2024-08-12T09:49:35.677Z (3 months ago)
- Language: Java
- Homepage:
- Size: 101 KB
- Stars: 41
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-react-native - react-native-popupwindow ★38 - Android PopupWindow for react-native module (Components / UI)
- awesome-reactnative-ui - react-native-popupwindow - native module|<ul><li>Last updated : 1 year ago</li><li>Stars : 38</li><li>Open issues : 0</li></ul>|![](https://raw.githubusercontent.com/beefe/react-native-popupwindow/master//popup.gif)| (Others)
- awesome-react-native - react-native-popupwindow ★38 - Android PopupWindow for react-native module (Components / UI)
- awesome-reactnative-ui - react-native-popupwindow - native module|<ul><li>Last updated : 1 year ago</li><li>Stars : 38</li><li>Open issues : 0</li></ul>|![](https://raw.githubusercontent.com/beefe/react-native-popupwindow/master//popup.gif)| (Others)
- awesome-react-native - react-native-popupwindow ★38 - Android PopupWindow for react-native module (Components / UI)
- awesome-react-native-ui - react-native-popupwindow ★27 - Android PopupWindow for react-native module (Components / UI)
- awesome-react-native - react-native-popupwindow ★38 - Android PopupWindow for react-native module (Components / UI)
README
# react-native-popupwindow [![npm version](https://img.shields.io/npm/v/react-native-popupwindow.svg?style=flat-square)](https://www.npmjs.com/package/react-native-popupwindow)
Android used PopupWindow implementation of the iOS-style dialog box### [简体中文](/README_zh_rCN.md)
## Method
### showPopupWindow(options,callback)
options : must be not null
* windowColor : background color,default #50000000
* style : show in activity center or bottom,default 0
* 0 : show in center
* 1 : show in bottom
* margin : the distance from the screen
* title : dialog title,default hide,only show when set value and style=0
* titleTextSize : dialog title text size,default 17sp,only show when set value and style=0
* titleTextColor : dialog title text color,only show when set value and style=0
* single : only show when set value and style=0,default false
* false : has two button(positive and negative)
* true : single button(only has positive)
* message : dialog message
* messageTextSize : dialog message text size
* messageTextColor : dialog message text color
* positive : when style=0 and single=false,is left button、when single=true,only has this button; when style=1,is above button
* positiveTextSize : positive button text size
* positiveTextColor : positive button text color
* negative : when style=0 and single=false,is right button、when single=true,this button will be hidden; when style=1,is below button
* negativeTextSize : negative button text size
* negativeTextColor : negative button text colorcallback(err,action,button)
* err : err message
* action : return "buttonClicked"
* button : return "positive" or "negative"## Install And Use
#### Npm Install
```shell
$ npm install --save react-native-popupwindow
```#### Add Link
```shell
$ react-native link react-native-popupwindow
```#### Use
```javascript
import React, { Component } from 'react';import {
AppRegistry,
StyleSheet,
Text,
View,
ToastAndroid
} from 'react-native';import MyPop from 'react-native-popupwindow';
let options = {
};class PopupWindow extends Component {
center(){
options.style = 0;
MyPop.showPopupWindow(options,(err,action,button) =>{
if(err){
ToastAndroid.show(err,ToastAndroid.SHORT);
}else{
if(action === 'buttonClicked'){
if(button === 'positive'){
ToastAndroid.show('click ok',ToastAndroid.SHORT);
}else if(button === 'negative'){
ToastAndroid.show('click cancel',ToastAndroid.SHORT);
}
}
}
});
}
bottom(){
options.style = 1;
MyPop.showPopupWindow(options,(err,action,button) =>{
if(err){
ToastAndroid.show(err,ToastAndroid.SHORT);
}else{
if(action === 'buttonClicked'){
if(button === 'positive'){
ToastAndroid.show('click ok',ToastAndroid.SHORT);
}else if(button === 'negative'){
ToastAndroid.show('click cancel',ToastAndroid.SHORT);
}
}
}
});
}
render() {
return (
show in center
show in bottom
);
}
}const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
});AppRegistry.registerComponent('PopupWindow', () => PopupWindow);
```## Run Renderings
![rendering](/popup.gif)