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

OnFillChange doesn't work

Open IsaacIsrael opened this issue 4 years ago • 0 comments

OnFillChange doesn't work

 <AnimatedCircularProgress
      size={width}
      width={strokeWidth}
      fill={percentage}
      tintColor={PRIMARY_COLOR}
      backgroundColor={DARK_GREY_COLOR}
      duration={isAnimated ? duration : 0}
      rotation={0}
      onAnimationComplete={onAnimationComplete}
      onFillChanged={(event) => console.log(event)}
    />

On my code onFillChanged is never called

IsaacIsrael avatar Apr 20 '21 19:04 IsaacIsrael