surajitsarkar19 / react-native-radial-gradient

Radial gradient library for react native

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Any way to cut a quarter of the circle?

SrBrahma opened this issue Β· comments

commented

I want a πŸ•.

Tried to wrap the <RadialGradient/> with a <View style={{height: radius/2, width/2}}/>, but the gradient will draw outside it anyway.

Is it possible?

commented

Fixed with <View style={{height: radius/2, width/2, overflow: 'hidden' }}/> hehe