react-native-elementary-toast
A react native module to show toast like android, it works on iOS and Android.
This is based on work at https://github.com/crazycodeboy/react-native-easy-toast.
Content
Installation
- 1.Run
npm i react-native-elementary-toast --save
- 2.
import Toast, {DURATION} from 'react-native-elementary-toast'
Demo
Getting started
Add react-native-elementary-toast
to your js file.
import Toast, {DURATION} from 'react-native-elementary-toast'
Inside your component's render method, use Toast:
{ return <View style=stylescontainer> ... <Toast ref="toast"/> </View> ; }
Note: Add it in the bottom of the root view.
Then you can use it like this:
thisrefstoast;
That's it, you're ready to go!
show a toast, and execute callback function when toast close it:
thisrefstoast;
Show a toast forever until you manually close it:
thisrefstoast;
Or pass an element:
thisrefstoast;
// later on: this.refs.toast.close('hello world!');
Optional you can pass a delay in seconds to the close()-method:
```javascript
this.refs.toast.close('hello world!', 500);
Currently, the default delay for close() in FOREVER-mode is set to 250 ms (or this.props.defaultCloseDelay, which you can pass with)
<Toast ... = />
Basic usage
{ return <View style=stylescontainer> <TouchableHighlight style=padding: 10 onPress={ thisrefstoast; }> <Text>Press me</Text> </TouchableHighlight> <Toast ref="toast"/> </View> ; }
Custom Toast
{ return <View style=stylescontainer> <TouchableHighlight style=padding: 10 onPress={ thisrefstoast; }> <Text>Press me</Text> </TouchableHighlight> <Toast ref="toast" style=backgroundColor:'red' position='top' positionValue=200 fadeInDuration=750 fadeOutDuration=1000 opacity=08 textStyle=color:'red' /> </View> ; }
API
Props | Type | Optional | Default | Description |
---|---|---|---|---|
style | View.propTypes.style | true | {backgroundColor: 'black',opacity: OPACITY,borderRadius: 5,padding: 10,} | Custom style toast |
position | PropTypes.oneOf(['top','center','bottom',]) | true | 'bottom' | Custom toast position |
positionValue | React.PropTypes.number | true | 120 | Custom toast position value |
fadeInDuration | React.PropTypes.number | true | 500 | Custom toast show duration |
fadeOutDuration | React.PropTypes.number | true | 500 | Custom toast close duration |
opacity | React.PropTypes.number | true | 1 | Custom toast opacity |
textStyle | View.propTypes.style | true | {color:'white'} | Custom style text |
Method | Type | Optional | Description |
---|---|---|---|
show(text, duration, callback) | function | false | show a toast,unit is millisecond,and do callback |
close() | function | - | start the close timer |
Contribution
Issues are welcome. Please add a screenshot of bug and code snippet. Quickest way to solve issue is to reproduce it on one of the examples.
Pull requests are welcome. If you want to change API or making something big better to create issue and discuss it first.
MIT Licensed