react-native-stories-view
                                
                                
                                
                                    react-native-stories-view copied to clipboard
                            
                            
                            
                        enableProgress false in StoryContainer
In the documentation enableProgress : "Enable/Disable superior progress visibility".
But when you set it to false, it continues to display the bar, only those without passing the progress. In addition, the duration of the stories was locked. How do I hide the progress bar?
<StoryContainer
  visible={storiesList.showFullScreenStory}
  enableProgress={false}
  images={promotedCourses}
  duration={20}
  onComplete={() => { closeStory()}}
  containerStyle={{
    width: '100%',
    height: '100%'
  }}
/>