mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
c06d8d01ca
Summary: Changelog: [Internal] RNTester to support 3 levels of navigation Reviewed By: kacieb Differential Revision: D29481463 fbshipit-source-id: e48281cce7fccd7096446c5f0f5583f2588b5028
35 lines
1.0 KiB
JavaScript
35 lines
1.0 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import Scrollable from './SectionList-scrollable';
|
|
import ContentInset from './SectionList-contentInset';
|
|
import onEndReached from './SectionList-onEndReached';
|
|
import onViewableItemsChanged from './SectionList-onViewableItemsChanged';
|
|
import withSeparators from './SectionList-withSeparators';
|
|
import stickyHeadersEnabled from './SectionList-stickyHeadersEnabled';
|
|
import inverted from './SectionList-inverted';
|
|
|
|
exports.title = 'SectionList';
|
|
exports.category = 'ListView';
|
|
exports.documentationURL = 'https://reactnative.dev/docs/sectionlist';
|
|
exports.description = 'Performant, scrollable list of data.';
|
|
exports.showIndividualExamples = true;
|
|
exports.examples = [
|
|
ContentInset,
|
|
onEndReached,
|
|
onViewableItemsChanged,
|
|
withSeparators,
|
|
stickyHeadersEnabled,
|
|
inverted,
|
|
Scrollable,
|
|
];
|