mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
644b93dc11
Summary: Currently, it's hard to find out that it's very easy to use android toasts. The example is very complex and hard to grasp for a beginner. So, I propose to add an easy to understand example. I'm sure the syntax of this PR is not really correct, it's just a start to show the kind of thing I propose. Closes https://github.com/facebook/react-native/pull/9859 Differential Revision: D3886274 Pulled By: donyu fbshipit-source-id: 15e693f5ddb1efea0fc6b7accfa688fd5f99a100
61 lines
1.6 KiB
JavaScript
61 lines
1.6 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @providesModule ToastAndroid
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var RCTToastAndroid = require('NativeModules').ToastAndroid;
|
|
|
|
/**
|
|
* This exposes the native ToastAndroid 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 ToastAndroid.SHORT or ToastAndroid.LONG
|
|
*
|
|
* There is also a function `showWithGravity` to specify the layout gravity. May be
|
|
* ToastAndroid.TOP, ToastAndroid.BOTTOM, ToastAndroid.CENTER.
|
|
*
|
|
* Basic usage:
|
|
* ```javascript
|
|
* ToastAndroid.show('A pikachu appeared nearby !', ToastAndroid.SHORT);
|
|
* ToastAndroid.showWithGravity('All Your Base Are Belong To Us', ToastAndroid.SHORT, ToastAndroid.CENTER);
|
|
* ```
|
|
*/
|
|
|
|
var ToastAndroid = {
|
|
|
|
// Toast duration constants
|
|
SHORT: RCTToastAndroid.SHORT,
|
|
LONG: RCTToastAndroid.LONG,
|
|
|
|
// Toast gravity constants
|
|
TOP: RCTToastAndroid.TOP,
|
|
BOTTOM: RCTToastAndroid.BOTTOM,
|
|
CENTER: RCTToastAndroid.CENTER,
|
|
|
|
show: function (
|
|
message: string,
|
|
duration: number
|
|
): void {
|
|
RCTToastAndroid.show(message, duration);
|
|
},
|
|
|
|
showWithGravity: function (
|
|
message: string,
|
|
duration: number,
|
|
gravity: number,
|
|
): void {
|
|
RCTToastAndroid.showWithGravity(message, duration, gravity);
|
|
},
|
|
};
|
|
|
|
module.exports = ToastAndroid;
|