mirror of
https://github.com/status-im/react-native.git
synced 2025-01-11 01:56:26 +00:00
e11d496e9d
Summary: Follow up to 9ec95673909beac7798f589e0e9821b4225f8fa9 Closes https://github.com/facebook/react-native/pull/16759 Differential Revision: D6285219 Pulled By: hramos fbshipit-source-id: 7012d257a5a6cff06cb2d94203a9379e4b7e3c4e
1.8 KiB
1.8 KiB
id | title | layout | category | permalink | next | previous |
---|---|---|---|---|---|---|
toastandroid | ToastAndroid | docs | APIs | docs/toastandroid.html | vibration | timepickerandroid |
This exposes the native ToastAndroid module as a JS module. This has a function 'show' which takes the following parameters:
- String message: A string with the text to toast
- int duration: The duration of the toast. May be ToastAndroid.SHORT or ToastAndroid.LONG
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);
Methods
Properties
Reference
Methods
show()
ToastAndroid.show(message, duration)
showWithGravity()
ToastAndroid.showWithGravity(message, duration, gravity)
showWithGravityAndOffset()
ToastAndroid.showWithGravityAndOffset(message, duration, gravity, xOffset, yOffset)