From 1c056f1b260e4eb86bfb01c12a4bef6225407e08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dariusz=20G=C3=B3rak?= Date: Sat, 27 Oct 2018 15:38:40 +0200 Subject: [PATCH] Fix overflowing halfCircleRender on IOS devices --- src/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.js b/src/index.js index 17aeb7a..321b04b 100644 --- a/src/index.js +++ b/src/index.js @@ -113,6 +113,7 @@ export default class PercentageCircle extends Component { width: radius, height: radius * 2, borderRadius: radius, + overflow: 'hidden', transform: [ { translateX: radius / 2 }, { rotate: `${rotateDegrees}deg` },