Add Deprecation Warning to ListView

Summary: This component has long been deprecated in the docs. Adding a warning to the code.

Reviewed By: sahrens

Differential Revision: D10261155

fbshipit-source-id: 462ce30a97f35e52477cfc135fb50c976b56e9cb
This commit is contained in:
Eli White 2018-10-09 16:20:13 -07:00 committed by Facebook Github Bot
parent 5512c47429
commit e90f5fa263
1 changed files with 10 additions and 0 deletions

View File

@ -12,6 +12,8 @@
const invariant = require('fbjs/lib/invariant');
let showedListViewDeprecation = false;
// Export React, plus some native additions.
const ReactNative = {
// Components
@ -58,6 +60,14 @@ const ReactNative = {
return require('KeyboardAvoidingView');
},
get ListView() {
if (!showedListViewDeprecation) {
console.warn(
'ListView is deprecated and will be removed in a future release. ' +
'See https://fb.me/nolistview for more information',
);
showedListViewDeprecation = true;
}
return require('ListView');
},
get MaskedViewIOS() {