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 7d07cf2 commit 2e7ae8eCopy full SHA for 2e7ae8e
src/components/carousel/index.tsx
@@ -381,14 +381,17 @@ class Carousel extends Component<CarouselProps, CarouselState> {
381
382
return (
383
<View
384
- style={{
385
- width: pageWidth,
386
- height: !horizontal ? pageHeight : undefined,
387
- paddingLeft,
388
- marginLeft,
389
- marginRight,
390
- paddingVertical
391
- }}
+ style={[
+ {
+ width: pageWidth,
+ height: !horizontal ? pageHeight : undefined,
+ paddingLeft,
+ marginLeft,
+ marginRight,
+ paddingVertical
392
+ },
393
+ Constants.isRTL && Constants.isAndroid && styles.invertedView
394
+ ]}
395
key={key}
396
collapsable={false}
397
>
0 commit comments