diff --git a/packages/rn-tester/js/examples/Animated/AnimatedExample.js b/packages/rn-tester/js/examples/Animated/AnimatedIndex.js similarity index 97% rename from packages/rn-tester/js/examples/Animated/AnimatedExample.js rename to packages/rn-tester/js/examples/Animated/AnimatedIndex.js index cfa3d0c3b17..f3bdede94f4 100644 --- a/packages/rn-tester/js/examples/Animated/AnimatedExample.js +++ b/packages/rn-tester/js/examples/Animated/AnimatedIndex.js @@ -25,6 +25,7 @@ export default ({ description: 'Library designed to make animations fluid, powerful, and painless to ' + 'build and maintain.', + showIndividualExamples: true, examples: [ FadeInViewExample, ComposeAnimationsWithEasingExample, diff --git a/packages/rn-tester/js/examples/Animated/ComposeAnimationsWithEasingExample.js b/packages/rn-tester/js/examples/Animated/ComposeAnimationsWithEasingExample.js index e5dd4b8d8b2..e660d756436 100644 --- a/packages/rn-tester/js/examples/Animated/ComposeAnimationsWithEasingExample.js +++ b/packages/rn-tester/js/examples/Animated/ComposeAnimationsWithEasingExample.js @@ -27,6 +27,7 @@ const styles = StyleSheet.create({ export default ({ title: 'Composite Animations with Easing', + name: 'compositeAnimationsWithEasing', description: ('Sequence, parallel, delay, and ' + 'stagger with different easing functions.': string), render: function(): React.Node { diff --git a/packages/rn-tester/js/examples/Animated/ContinuousInteractionsExample.js b/packages/rn-tester/js/examples/Animated/ContinuousInteractionsExample.js index 65ca5f354ec..19d6268b81b 100644 --- a/packages/rn-tester/js/examples/Animated/ContinuousInteractionsExample.js +++ b/packages/rn-tester/js/examples/Animated/ContinuousInteractionsExample.js @@ -14,6 +14,7 @@ import {Text} from 'react-native'; export default ({ title: 'Continuous Interactions', + name: 'continuousInteractions', description: ('Gesture events, chaining, 2D ' + 'values, interrupting and transitioning ' + 'animations, etc.': string), diff --git a/packages/rn-tester/js/examples/Animated/RotatingImagesExample.js b/packages/rn-tester/js/examples/Animated/RotatingImagesExample.js index b0fe9e0ec5e..f3345ebd01e 100644 --- a/packages/rn-tester/js/examples/Animated/RotatingImagesExample.js +++ b/packages/rn-tester/js/examples/Animated/RotatingImagesExample.js @@ -86,6 +86,7 @@ function RotatingImagesExample(): React.Node { export default ({ title: 'Rotating Images', + name: 'rotatingImages', description: 'Simple Animated.Image rotation.', render: RotatingImagesExample, }: RNTesterModuleExample); diff --git a/packages/rn-tester/js/examples/Animated/TransformBounceExample.js b/packages/rn-tester/js/examples/Animated/TransformBounceExample.js index 1a6de0a2631..0f28da7cdb4 100644 --- a/packages/rn-tester/js/examples/Animated/TransformBounceExample.js +++ b/packages/rn-tester/js/examples/Animated/TransformBounceExample.js @@ -27,6 +27,7 @@ const styles = StyleSheet.create({ export default ({ title: 'Transform Bounce', + name: 'transformBounce', description: ('One `Animated.Value` is driven by a ' + 'spring with custom constants and mapped to an ' + 'ordered set of transforms. Each transform has ' + diff --git a/packages/rn-tester/js/utils/RNTesterList.android.js b/packages/rn-tester/js/utils/RNTesterList.android.js index 65c2c3e1f62..f528ca65eb4 100644 --- a/packages/rn-tester/js/utils/RNTesterList.android.js +++ b/packages/rn-tester/js/utils/RNTesterList.android.js @@ -153,9 +153,9 @@ const APIs: Array = [ module: require('../examples/Alert/AlertExample'), }, { - key: 'AnimatedExample', + key: 'AnimatedIndex', category: 'UI', - module: require('../examples/Animated/AnimatedExample').default, + module: require('../examples/Animated/AnimatedIndex').default, }, { key: 'Animation - GratuitousAnimation', diff --git a/packages/rn-tester/js/utils/RNTesterList.ios.js b/packages/rn-tester/js/utils/RNTesterList.ios.js index 67a38f58481..6eec793053f 100644 --- a/packages/rn-tester/js/utils/RNTesterList.ios.js +++ b/packages/rn-tester/js/utils/RNTesterList.ios.js @@ -123,7 +123,7 @@ const Components: Array = [ module: require('../examples/ScrollView/ScrollViewIndicatorInsetsExample'), }, { - key: 'SectionListExample', + key: 'SectionListIndex', module: require('../examples/SectionList/SectionListIndex'), category: 'ListView', supportsTVOS: true, @@ -200,8 +200,8 @@ const APIs: Array = [ supportsTVOS: true, }, { - key: 'AnimatedExample', - module: require('../examples/Animated/AnimatedExample').default, + key: 'AnimatedIndex', + module: require('../examples/Animated/AnimatedIndex').default, supportsTVOS: true, }, {