Circle
A circlular shape view.
Example​
- swiftui-react-native
- SwiftUI
- React Native
<Circle fill="red" frame={{ width: 100, height: 100 }} />
Circle()
.fill(Color.red)
.frame(width: 100, height: 100)
<View
style={{ width: 100, height: 100, backgroundColor: 'red', borderRadius: 50 }}
/>
Props​
Circle inherits all View Modifiers as props.