react-native-progress
react-native-progress copied to clipboard
Design of progress bar issue when use flexDirection row
Design of progress bar issue when use flex-direction row with other items in same view
Do you have a minimal reproduction of the issue?
I place a View with flexDirection: row
to show percentage aside.
I configured unfilledColor={black}
and the result is the:
Whitout flexDirection: row
:
I found a hack where we can align Text with Progress bar in row by putting progress bar within Text tags as :
<Text>Hello <Progress.Bar progress={0.5} width={100} /></Text>
OR
Simply wrap Progress Bar into another View.