5

Customizing view content shape in SwiftUI

 2 years ago
source link: https://swiftwithmajid.com/2021/12/03/customizing-view-content-shape-in-swiftui/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

Customizing view content shape in SwiftUI

03 Dec 2021

Usually, SwiftUI uses rectangles to render views, but we can control the shape of the view by using the clipShape view modifier. This week we will learn how to modify the interactable shape of the view during hit-testing or previewing drag and drop by using the brand new contentShape view modifier.

Let’s start with a simple view that displays text and an image in a vertical stack.

struct ContentView: View {
    var body: some View {
        VStack {
            Image(systemName: "star")
            Text("Hello World!")
        }
    }
}

Now, we want to make this view tappable and provide the hover effect for the iPadOS pointer.

To learn more about implementing the hover effect on iPadOS, take a look at my dedicated “Hover effect in SwiftUI” post.

struct ContentView: View {
    var body: some View {
        VStack {
            Image(systemName: "star")
            Text("Hello World!")
        }
        .hoverEffect()
        .onTapGesture {
            print("Super star!")
        }
    }
}

Finally, we can customize the shape of the hover effect by using the contentShape view modifier.

struct ContentView: View {
    var body: some View {
        VStack {
            Image(systemName: "star")
            Text("Hello World!")
        }
        .contentShape(.hoverEffect, Circle())
        .hoverEffect()
        .onTapGesture {
            print("Super star!")
        }
    }
}

The contentShape view modifier changes the shape of the view used for a particular interaction. We change the content shape only for the hover effect in our example. But we can do it for different types of interactions, like drag and drop previews, hit-testing, context menu previews, and hover effect.

The contentShape view modifier accepts the instance of the ContentShapeKinds option set that defines interactions on a view. SwiftUI provides us these options to use:

  1. interaction - this one offers a shape for hit-testing.
  2. dragPreview - this type provides an outline for drag and drop previews.
  3. contextMenuPreview - this type provides a shape for rendering context menu previews.
  4. hoverEffect - this type provides a shape for a hover effect on iPadOS.

ContentShapeKinds struct conforms to OptionSet protocol which means you can combine different options together.

struct ContentView: View {
    var body: some View {
        VStack {
            Image(systemName: "star")
            Text("Hello World!")
        }
        .contentShape([.hoverEffect, .dragPreview], Circle())
        .hoverEffect()
        .onTapGesture {
            print("Super star!")
        }
    }
}

If you are not familiar with OptionSet protocol, take a look at my “Inclusive enums with OptionSet” post.

Remember that the contentShape view modifier affects only the interactable shape of the view. If you need to change the shape while rendering, you should use the clipShape view modifier.

To learn more about clipping and masking in SwiftUI, take a look at my “Customizing the shape of views in SwiftUI” post.

struct Triangle: Shape {
    func path(in rect: CGRect) -> Path {
        var path = Path()

        path.move(to: CGPoint(x: rect.minX, y: rect.maxY))
        path.addLine(to: CGPoint(x: rect.midX, y: rect.minY))
        path.addLine(to: CGPoint(x: rect.maxX, y: rect.maxY))
        path.addLine(to: CGPoint(x: rect.minX, y: rect.maxY))

        return path
    }
}

struct ContentView: View {
    var body: some View {
        VStack {
            Image(systemName: "star")
            Text("Hello World!")
        }
        .contentShape(.dragPreview, Triangle())
        .hoverEffect()
        .onTapGesture {
            print("Super star!")
        }
    }
}

Keep in mind that you can use any shape you need. As you can see in the example above, we use a custom shape that clips the view content to a triangle during drag and drop.

This week we learned how to customize the shape of the view during interactions via the brand new contentShape view modifier. I hope you enjoy the post. Feel free to follow me on Twitter and ask your questions related to this post. Thanks for reading, and see you next week!


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK