RobertFOConnor / react-native-progress-wheel

A better way to show your animated progress in a circle.

Home Page:https://www.npmjs.com/package/react-native-progress-wheel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How can I render a child component?

FFFra opened this issue · comments

Im doing


<AnimatedProgressWheel
            ref={ref => (this.progressWheel = ref)}
            size={130}
            width={5}
            color={'yellow'}
            animateFromValue={0}
            backgroundColor={'orange'}>
            <View style={styles.captureBtnInternal} />
          </AnimatedProgressWheel>

but the inner view is not rendering.

Thank u so much!

Hi there! For now, the AnimatedProgressWheel component does not accept children. If you want to render something within the circle, I would suggest using position: 'absolute' to overlay your view on top of the wheel. Let me know if this helps.
Thanks for using my library. :)

Hello! Thank u very much! I manage the problem positioning the elements.

Cheers!