SwiftUI

Using UnevenRoundedRectangle to Round Specific Corners in SwiftUI


In SwiftUI, there is a convenient built-in modifier called cornerRadius that allows you to easily create rounded corners for a view. By applying the cornerRadius modifier to a Rectangle view, you can transform it into a rounded rectangle. The value you provide to the modifier determines the extent of the rounding effect.

Alternatively, SwiftUI also provides a standard RoundedRectangle view for creating a rounded rectangle:

Unfortunately, both the cornerRadius modifier and the RoundedRectangle view can only apply the same corner radius to all corners of the shape.

What if you need to round a specific corner of a view?

In iOS 17, the SwiftUI framework introduces a new view called UnevenRoundedRectangle. What sets this view apart is the ability to specify a distinct radius value for each corner, allowing developers to create highly customizable shapes.

Note: We have a tutorial on UIKit showing you how to round specific corners.

Working with UnevenRoundedRectangle

With UnevenRoundedRectangle, you can easily create rectangular shapes with rounded corners of different radii. To use UnevenRoundedRectangle, you simply need to specify the corner radius for each corner. Here is an example:

Optionally, you can indicate the style of the corners. A continuous corner style will give the corners a smoother look. If you’ve put the code above in Xcode 15, you can create a rectangular shape like below.

swiftui-unevenroundedrectangle

You can use this shape and transform it into a button by using the background modifier. Here is a sample code snippet:

Animating the Rounded Corners

swiftui-animated-rounded-rectangle

To animate the rounded corners of the UnevenRoundedRectangle, you can use the withAnimation function and toggle a Boolean variable. Here is an example code snippet:

In this example, tapping the rectangle will toggle the animate variable, which controls the corner radii of the rectangle. The withAnimation function will animate the transition between the two sets of corner radii.

Creating Unique Shapes

swiftui-badge-ui

By overlapping multiple UnevenRoundedRectangle views, you can create a wide variety of shapes. The example provided above demonstrates how to create the specific shape shown using the following code:

To add an additional visual effect, you can animate the change in opacity by modifying the code as follows:

Implementing this modification will result in a visually captivating effect that adds an extra level of interest to your design.

swiftui-unevenroundedrectangle-animated-effect

Summary

The addition of the UnevenRoundedRectangle view in SwiftUI provides developers with a convenient solution for rounding specific corners of rectangular views. It also gives you the flexibility and options to achieve the look you want. With the UnevenRoundedRectangle shape, you can seamlessly incorporate unique and eye-catching shapes into your app, enhancing its overall design and user experience.

Tutorial
Building a Chatbot App for iOS with Dialogflow (API.AI) and Text-to-Speech
Tutorial
Building a Simple Barcode Reader App in Swift
SwiftUI
Building Collection Views in SwiftUI with LazyVGrid and LazyHGrid
Shares