How to use shapes like circle, ellipse, capsule, rectangle and rounded rectangle – SwiftUI
JLVTECH > SwiftUI > How to use shapes like circle, ellipse, capsule, rectangle and rounded rectangle – SwiftUI
With SwiftUI, you get access to five built-in shapes which are circle, ellipse, rectangle, rounded rectangle and capsule.
Downloads
To follow this tutorial, you can download the source file, which will help you compare your progress.
Shapes vs Stacks
Unlike stacks, shapes take the maximum space. To color them, you use fill and foregroundColor instead of background. They’re great for clipping content and setting a border style.
Circle
The Circle allows you to draw a perfect circular shape. The circular shape will have a diameter that’s equal to the smaller number between width and height.
The Ellipse is like a circle, but without the perfect aspect ratio 1:1. When the width and height are different, it’ll fill the space and distort itself.
While most elements in SwiftUI such as stacks, colors, gradients start as rectangles, they’re not shapes. The Rectangle has a shape property, allowing it to have a stroke or serve as a mask.
In the final layout, you can see that shapes are fantastic for clipping the content of a stack. On top of that, you can use them to set a border, use the maximum space and create really nice buttons.