mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-24 04:16:00 +08:00
Document ListView.DataSource #410
Summary:Fixes #410 Closes https://github.com/facebook/react-native/pull/7193 Differential Revision: D3217718 fb-gh-sync-id: c05c9e3d67863c064f8e1102090614c6ba7e3127 fbshipit-source-id: c05c9e3d67863c064f8e1102090614c6ba7e3127
This commit is contained in:
committed by
Facebook Github Bot 5
parent
3f1165dfc6
commit
7102fd079a
@@ -107,12 +107,13 @@ function isRunnable(componentName, componentPlatform) {
|
||||
|
||||
// Hide a component from the sidebar by making it return false from
|
||||
// this function
|
||||
function shouldDisplayInSidebar(componentName) {
|
||||
if (componentName === 'Transforms') {
|
||||
return false;
|
||||
}
|
||||
var HIDDEN_COMPONENTS = [
|
||||
'Transforms',
|
||||
'ListViewDataSource',
|
||||
];
|
||||
|
||||
return true;
|
||||
function shouldDisplayInSidebar(componentName) {
|
||||
return HIDDEN_COMPONENTS.indexOf(componentName) === -1;
|
||||
}
|
||||
|
||||
function getNextComponent(i) {
|
||||
@@ -271,6 +272,7 @@ var apis = [
|
||||
'../Libraries/LayoutAnimation/LayoutAnimation.js',
|
||||
'../Libraries/Linking/Linking.js',
|
||||
'../Libraries/LinkingIOS/LinkingIOS.js',
|
||||
'../Libraries/CustomComponents/ListView/ListViewDataSource.js',
|
||||
'../node_modules/react/lib/NativeMethodsMixin.js',
|
||||
'../Libraries/Network/NetInfo.js',
|
||||
'../node_modules/react/lib/PanResponder.js',
|
||||
|
||||
Reference in New Issue
Block a user