10 lines
384 B
JavaScript
10 lines
384 B
JavaScript
/**
|
|
* This exposes the native ToastExample module as a JS module. This has a
|
|
* function 'show' which takes the following parameters:
|
|
*
|
|
* 1. String message: A string with the text to toast
|
|
* 2. int duration: The duration of the toast. May be ToastExample.SHORT or
|
|
* ToastExample.LONG
|
|
*/
|
|
import {NativeModules} from 'react-native';
|
|
module.exports = NativeModules.CustomDialog; |