react-native-slideshow icon indicating copy to clipboard operation
react-native-slideshow copied to clipboard

Bug visual with the arrows.

Open FreeCoder22 opened this issue 6 years ago • 2 comments

hello, Thanks for shared project. I have one bug visual with the arrows. I have fixed the bug by changing the value justifyContent : center in the constant layoutArrow

Before const layoutArrow = function (imageHeight, iconHeight) { return { position: 'absolute', backgroundColor: 'transparent', justifyContent: 'flex-start', alignItems: 'flex-start', top: (imageHeight-iconHeight)/2, bottom: (imageHeight-iconHeight)/2, }; }

After const layoutArrow = function (imageHeight, iconHeight) { return { position: 'absolute', backgroundColor: 'transparent', justifyContent: center', alignItems: 'flex-start', top: (imageHeight-iconHeight)/2, bottom: (imageHeight-iconHeight)/2, }; }

FreeCoder22 avatar Apr 12 '18 07:04 FreeCoder22

I have this bug too. Here is a screenshot of what the issue looks like: screenshot_20180529-143802

lufinkey avatar May 29 '18 18:05 lufinkey

you can use another icon to fix this arrowLeft={someicon or compnent} arrowRight={someIcon or component}

mubashiralisiddiqui avatar Jul 28 '18 19:07 mubashiralisiddiqui