react-native-looped-carousel
                                
                                 react-native-looped-carousel copied to clipboard
                                
                                    react-native-looped-carousel copied to clipboard
                            
                            
                            
                        pageStyle prop doesn't apply style
The pageStyle prop doesn't apply styles because the <TouchableWithoutFeedback> component does not support style.
Issue
<TouchableWithoutFeedback style={[{ ...size }, this.props.pageStyle]} key={`page${i}`}>
  {page}
</TouchableWithoutFeedback>
Repro
Try setting styles for pageStyle or use this simple repro:
<TouchableWithoutFeedback style={{backgroundColor: 'tan'}}>
  <Text>TouchableWithoutFeedback</Text>
</TouchableWithoutFeedback>
Fix
Since the <TouchableWithoutFeedback> component is not capturing any touches, it can be replaced with a View element.