Flamingo
Flamingo

Reputation: 56

React-Native: How to create semi circle arc using a View

enter image description here How can I create this shape using only a View in react native

Upvotes: 1

Views: 513

Answers (1)

b.stevens.photo
b.stevens.photo

Reputation: 934

While this is probably doable with some fancy css or even an svg I would highly recommend using a package, compound someone else's work ya know? https://www.npmjs.com/package/react-native-circular-progress

If you're curious about the actual mechanics you can dig into the packages source code and learn how it ticks. https://github.com/bartgryszko/react-native-circular-progress

Upvotes: 1

Related Questions