react-native-progress
react-native-progress copied to clipboard
Android 9 OxygenOS progress circle does not show percent char "%"
First thing first Thanks for this amazing repo, works like a charm, and super easy to make progress :)
My issue is very specific, sorry about that
On the latest release of Android (9) with OxygenOS, I noticed that on a circle progress using this snippet
<Progress.Circle
size={120}
progress={this.state.downloadProgress}
borderWidth={8}
color="rgba(255, 69, 89, 1)"
borderColor="#fff"
unfilledColor="#fff"
showsText={true}
thickness={9}
/>
Does not show the % character. Only Number are shown, it work on other release of android (older) and IOS, but not on this specific version.
@oblador Hi, have you experienced this issue ?
setting
textStyle={{width:120,textAlign:'center'}}
worked for me.