24ark / react-native-step-indicator

A simple react-native implementation of step indicator widget compatible with the ViewPager and ListView.
Apache License 2.0
1.43k stars 312 forks source link

Stroke line visible on step circle #86

Open jariwalabhavesh opened 4 years ago

jariwalabhavesh commented 4 years ago

There is wired stroke link appearing on step circle and it is random at different places it is rendering differently. At some place is looks good but a few circles show stroke line. I had attached screenshots where you can see horizontal or vertical full / half white stoke line. It is visible in android and ios both.

Screenshot 2019-12-16 at 3 48 18 PM Screenshot 2019-12-16 at 3 48 14 PM Screenshot 2019-12-16 at 3 48 06 PM Screenshot 2019-12-16 at 3 48 00 PM Screenshot 2019-12-16 at 3 47 48 PM

Anyone have an idea why it is happening and showing a white stroke line. Any workaround to fix it?

amol251 commented 4 years ago

I had solved this issue by making change in StepIndicator.js file

stepIndicatorContainer: { flexDirection: 'row', alignItems: 'center', justifyContent: 'space-around', backgroundColor: 'transparent' // change the color to "rgba(1,0,0,0)" }

jariwalabhavesh commented 4 years ago

@amol251 : Thanks It's fixed