2015-09-09 13:41:00 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-09-09 13:41:00 +00:00
|
|
|
*
|
2018-05-11 02:06:46 +00:00
|
|
|
* @format
|
2015-12-02 03:09:01 +00:00
|
|
|
* @noflow
|
2015-09-09 13:41:00 +00:00
|
|
|
*/
|
2018-05-11 02:06:46 +00:00
|
|
|
|
2015-09-09 13:41:00 +00:00
|
|
|
'use strict';
|
|
|
|
|
2018-03-03 23:04:46 +00:00
|
|
|
const warning = require('fbjs/lib/warning');
|
2015-09-11 14:47:34 +00:00
|
|
|
|
2018-03-03 23:04:46 +00:00
|
|
|
const ToastAndroid = {
|
2018-05-11 02:06:46 +00:00
|
|
|
show: function(message: string, duration: number): void {
|
2016-01-26 18:29:47 +00:00
|
|
|
warning(false, 'ToastAndroid is not supported on this platform.');
|
2015-09-11 14:47:34 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = ToastAndroid;
|