File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 13
13
const React = require ( 'React' ) ;
14
14
const StyleSheet = require ( 'StyleSheet' ) ;
15
15
16
- const RCTProgressViewNativeComponent = require ( 'RCTProgressViewNativeComponent ' ) ;
16
+ const RNCProgressViewNativeComponent = require ( 'RNCProgressViewNativeComponent ' ) ;
17
17
18
18
import type { ImageSource } from 'ImageSource' ;
19
19
import type { ColorValue } from 'StyleSheetTypes' ;
@@ -58,9 +58,9 @@ type Props = $ReadOnly<{|
58
58
*/
59
59
const ProgressViewIOS = (
60
60
props : Props ,
61
- forwardedRef ?: ?React . Ref < typeof RCTProgressViewNativeComponent > ,
61
+ forwardedRef ?: ?React . Ref < typeof RNCProgressViewNativeComponent > ,
62
62
) => (
63
- < RCTProgressViewNativeComponent
63
+ < RNCProgressViewNativeComponent
64
64
{ ...props }
65
65
style = { [ styles . progressView , props . style ] }
66
66
ref = { forwardedRef }
@@ -78,4 +78,4 @@ const ProgressViewIOSWithRef = React.forwardRef(ProgressViewIOS);
78
78
/* $FlowFixMe(>=0.89.0 site=react_native_ios_fb) This comment suppresses an
79
79
* error found when Flow v0.89 was deployed. To see the error, delete this
80
80
* comment and run Flow. */
81
- module . exports = ( ProgressViewIOSWithRef : RCTProgressViewNativeComponent ) ;
81
+ module . exports = ( ProgressViewIOSWithRef : RNCProgressViewNativeComponent ) ;
Original file line number Diff line number Diff line change @@ -30,5 +30,5 @@ type NativeProps = $ReadOnly<{|
30
30
type NativeProgressViewIOS = Class < NativeComponent < NativeProps >> ;
31
31
32
32
module . exports = ( ( requireNativeComponent (
33
- 'RCTProgressView ' ,
33
+ 'RNCProgressView ' ,
34
34
) : any ) : NativeProgressViewIOS ) ;
You can’t perform that action at this time.
0 commit comments