RoundedRectangle
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:
Contribute to Docs
- 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.
Learn SwiftUI on Codecademy
- Skill path
Build iOS Apps with SwiftUI
Learn how to build iOS applications with Swift and SwiftUI and publish them to Apples' App Store.Includes 7 CoursesWith CertificateBeginner Friendly13 hours - Free course
Learn Swift
A powerful programming language developed by Apple for iOS, macOS, and more.Beginner Friendly12 hours