mirror of
https://github.com/bartgryszko/react-native-circular-progress.git
synced 2025-12-08 21:25:50 +00:00
fix renderCap overflow issue
This commit is contained in:
parent
dd7156712d
commit
a1f8e6c19f
@ -95,7 +95,7 @@ export default class CircularProgress extends React.PureComponent {
|
||||
return (
|
||||
<View style={style}>
|
||||
<Svg width={size + padding} height={size + padding}>
|
||||
<G rotation={rotation} originX={size / 2} originY={size / 2}>
|
||||
<G rotation={rotation} originX={(size + padding) / 2} originY={(size + padding) / 2}>
|
||||
{backgroundColor && (
|
||||
<Path
|
||||
d={backgroundPath}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user