This exposes the native ToastAndroid module as a JS module. This has a function 'show' which takes the following parameters:
There is also a function showWithGravity
to specify the layout gravity. May be ToastAndroid.TOP, ToastAndroid.BOTTOM, ToastAndroid.CENTER.
The 'showWithGravityAndOffset' function adds on the ability to specify offset These offset values will translate to pixels.
Basic usage:
ToastAndroid.show('A pikachu appeared nearby !', ToastAndroid.SHORT); ToastAndroid.showWithGravity( 'All Your Base Are Belong To Us', ToastAndroid.SHORT, ToastAndroid.CENTER ); ToastAndroid.showWithGravityAndOffset( 'A wild toast appeared!', ToastAndroid.LONG, ToastAndroid.BOTTOM, 25, 50 );
show()
static show(message, duration)
showWithGravity()
static showWithGravity(message, duration, gravity)
showWithGravityAndOffset()
static showWithGravityAndOffset(message, duration, gravity, xOffset, yOffset)
SHORT
ToastAndroid.SHORT;
LONG
ToastAndroid.LONG;
TOP
ToastAndroid.TOP;
BOTTOM
ToastAndroid.BOTTOM;
CENTER
ToastAndroid.CENTER;
© 2015–2018 Facebook Inc.
Licensed under the Creative Commons Attribution 4.0 International Public License.
https://facebook.github.io/react-native/docs/toastandroid.html