We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 446e70d commit 71bec5bCopy full SHA for 71bec5b
src/components/carousel/index.tsx
@@ -471,8 +471,8 @@ class Carousel extends Component<CarouselProps, CarouselState> {
471
}
472
473
renderAccessibleLayout() {
474
- const {containerStyle, children, testID} = this.props;
475
-
+ const {containerStyle, children: propsChildren, testID} = this.props;
+ const children = Constants.isRTL && Constants.isAndroid ? React.Children.toArray(propsChildren) : propsChildren;
476
return (
477
<View style={containerStyle} onLayout={this.onContainerLayout}>
478
<ScrollView
0 commit comments