react-native-progress-steps
react-native-progress-steps copied to clipboard
Text not showing on IOS

Here's my Code:
`<View style={{ flex: 1, backgroundColor: "white" }}>
<ProgressSteps
activeStep={stepNo}
progressBarColor={CONSTANTS.PRIMARY_COLOR}
activeStepIconBorderColor={CONSTANTS.PRIMARY_COLOR}
completedProgressBarColor={CONSTANTS.PRIMARY_COLOR}
completedStepIconColor={CONSTANTS.PRIMARY_COLOR}
labelColor={CONSTANTS.TEXT_COLOR}
activeLabelColor={CONSTANTS.PRIMARY_COLOR}
completedLabelColor={CONSTANTS.PRIMARY_COLOR}
activeStepNumColor={CONSTANTS.PRIMARY_COLOR}
labelFontSize={fontSize}
>
<ProgressStep label="Created" removeBtnRow={true}></ProgressStep>
<ProgressStep label="Processing" removeBtnRow={true}></ProgressStep>
<ProgressStep label="Reassigned" removeBtnRow={true}></ProgressStep>
<ProgressStep label="Resolved" removeBtnRow={true}></ProgressStep>
</ProgressSteps>
</View>`
But on Android it's showing:

@ariesbrylle-bms I am facing the same issue. Please share any workaround you got for the issue