@react-native-pure/toast
v2.1.0
Published
Toast组件
Downloads
5
Readme
toast
A Toast component of pure javascript
Install
$ npm install --save @react-native-pure/toast
Simple Usage
import Toast from "@react-native-pure/toast"
Toast.show({
message:"hello toast!"
});
Toast
show
(option:ToastOption)=>void
ToastOption
message
any 默认是字符串renderMessage?
(message:any,messageStyle:any)=>React.Node 默认只能处理字符串的messageposition?
"top"|"center"|"bottom" 默认是top
duration?
number 默认是2000styles?
message
any 消息的样式container
any 容器的样式
hideOnPress?
boolean 点击是否隐藏,默认是true
animation?
"none"|"fade" 默认是none
onShow?
Function 有动画的时候才执行onShown?
Function 动画执行完或者没有动画时执行onHide?
Function 有动画的时候才执行onHidden?
Function 动画执行完或者没有动画时执行