mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-04 04:13:49 +01:00
Update WalletsCarousel.js
This commit is contained in:
parent
e384d6b4a1
commit
88f87a00d3
1 changed files with 3 additions and 3 deletions
|
@ -78,7 +78,7 @@ NewWalletPanel.propTypes = {
|
||||||
const iStyles = StyleSheet.create({
|
const iStyles = StyleSheet.create({
|
||||||
root: {
|
root: {
|
||||||
paddingRight: 10,
|
paddingRight: 10,
|
||||||
paddingLeft: I18nManager.isRTL ? 10 : 0,
|
paddingLeft: 10,
|
||||||
marginVertical: 17,
|
marginVertical: 17,
|
||||||
},
|
},
|
||||||
grad: {
|
grad: {
|
||||||
|
@ -288,7 +288,6 @@ const cStyles = StyleSheet.create({
|
||||||
},
|
},
|
||||||
content: {
|
content: {
|
||||||
left: 16,
|
left: 16,
|
||||||
flexDirection: I18nManager.isRTL ? 'row-reverse' : 'row',
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -338,12 +337,13 @@ const WalletsCarousel = forwardRef((props, ref) => {
|
||||||
)}
|
)}
|
||||||
<Carousel
|
<Carousel
|
||||||
ref={carouselRef}
|
ref={carouselRef}
|
||||||
|
inverted={I18nManager.isRTL}
|
||||||
renderItem={renderItem}
|
renderItem={renderItem}
|
||||||
sliderWidth={sliderWidth}
|
sliderWidth={sliderWidth}
|
||||||
sliderHeight={sliderHeight}
|
sliderHeight={sliderHeight}
|
||||||
itemWidth={itemWidth}
|
itemWidth={itemWidth}
|
||||||
inactiveSlideScale={1}
|
inactiveSlideScale={1}
|
||||||
inactiveSlideOpacity={I18nManager.isRTL ? 1.0 : 0.7}
|
inactiveSlideOpacity={0.7}
|
||||||
activeSlideAlignment="start"
|
activeSlideAlignment="start"
|
||||||
initialNumToRender={10}
|
initialNumToRender={10}
|
||||||
onLayout={onLayout}
|
onLayout={onLayout}
|
||||||
|
|
Loading…
Add table
Reference in a new issue