RoundedRectangle
cilippofilia14 total contributions
Published Dec 17, 2022
Contribute to Docs
The RoundedRectangle
view is a pre-built rectangular shape with rounded corners that is aligned inside the frame of the View
containing it.
SwiftUI has several built-in shapes, such as a rectangle, ellipse, and capsule.
Syntax
var body: some View {
RoundedRectangle(cornerRadius: Int)
Modifiers here
}
Example
The example below displays a cyan colored rectangle, with rounded corners, with a frame of 200
points wide by 50
points high:
var body: some View {RoundedRectangle(cornerRadius: 15).fill(.cyan).frame(width: 200, height: 50)}
This will display the following:
Looking to contribute?
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.