mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-21 10:34:31 +08:00
Add flow types RNTester examples (#22829)
Summary: This PR adds flow types for the RNTester examples, and updates all of the RNTester examples to match the flow type consistently. Previously, there was a mix of static class definitions and whether or not pages exported examples or a component. Now we will always export the same way, enforced by flow types Note: I also fixed most of the $FlowFixMe in changed components Pull Request resolved: https://github.com/facebook/react-native/pull/22829 Reviewed By: cpojer Differential Revision: D13563191 Pulled By: rickhanlonii fbshipit-source-id: b697e3346a863d1b130881592b0522a96c202b63
This commit is contained in:
committed by
Facebook Github Bot
parent
34ee8250b5
commit
bd32234e6e
@@ -57,9 +57,6 @@ class MovingBar extends React.Component<MovingBarProps, MovingBarState> {
|
||||
}
|
||||
|
||||
class ProgressBarAndroidExample extends React.Component<{}> {
|
||||
static title = '<ProgressBarAndroid>';
|
||||
static description = 'Horizontal bar to show the progress of some operation.';
|
||||
|
||||
render() {
|
||||
return (
|
||||
<RNTesterPage title="ProgressBar Examples">
|
||||
@@ -91,4 +88,13 @@ class ProgressBarAndroidExample extends React.Component<{}> {
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = ProgressBarAndroidExample;
|
||||
exports.title = '<ProgressBarAndroid>';
|
||||
exports.description = 'Horizontal bar to show the progress of some operation.';
|
||||
exports.examples = [
|
||||
{
|
||||
title: 'Simple progress bar',
|
||||
render: function(): React.Element<typeof ProgressBarAndroidExample> {
|
||||
return <ProgressBarAndroidExample />;
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user