react-native-progress-steps icon indicating copy to clipboard operation
react-native-progress-steps copied to clipboard

Scrollable progress steps

Open mariomurrent-softwaresolutions opened this issue 5 years ago • 5 comments

If there are more than 5 steps, the step bar is not rendered correctly and the two outer circles are cut off.

Thanks for bringing up this issue! I will take a look into it as soon as I can 🙂

colbymillerdev avatar Apr 02 '20 02:04 colbymillerdev

@colbymillerdev Any update ? :-)

SopoB avatar Sep 14 '20 07:09 SopoB

I solved it like this:

<ScrollView
      horizontal={true}
      showsHorizontalScrollIndicator={false}
      style={{width: '100%', maxHeight: 100}}>
      <ProgressSteps>
        <ProgressStep label="First Step">
          <View style={{alignItems: 'center'}}>
            <Text>This is the content within step 1!</Text>
          </View>
        </ProgressStep>
        <ProgressStep label="Second Step">
          <View style={{alignItems: 'center'}}>
            <Text>This is the content within step 2!</Text>
          </View>
        </ProgressStep>
        <ProgressStep label="Third Step">
          <View style={{alignItems: 'center'}}>
            <Text>This is the content within step 3!</Text>
          </View>
        </ProgressStep>
      </ProgressSteps>
    </ScrollView>

metinvio avatar Nov 02 '21 08:11 metinvio

Have made some changes in ProgressSteps.js resolving this issue Please check the PR #104

ksrajath7 avatar May 14 '23 09:05 ksrajath7

Is it still open can i work on it ?

Priyanshu-0301 avatar Jan 05 '24 10:01 Priyanshu-0301