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

Android 9 OxygenOS progress circle does not show percent char "%"

Open jonathangreco opened this issue 6 years ago • 2 comments

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.

jonathangreco avatar Mar 04 '19 08:03 jonathangreco

@oblador Hi, have you experienced this issue ?

jonathangreco avatar Aug 23 '19 09:08 jonathangreco

setting

textStyle={{width:120,textAlign:'center'}}

worked for me.

harry-harish avatar Feb 04 '20 11:02 harry-harish