当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Swift Never containerShape(_:)用法及代码示例


实例方法

containerShape(_:)

设置容器形状以用于此视图中的任何容器相关形状。

声明

func containerShape<T>(_ shape: T) -> some View where T : InsettableShape

详述

下面的示例定义了一个视图,该视图以圆角矩形背景和相同的容器形状显示其内容。 content 中的任何 ContainerRelativeShape 都与此容器插图中的圆角矩形形状相匹配。


struct PlatterContainer<Content: View> : View {
    @ViewBuilder var content: Content
    var body: some View {
        content
            .padding()
            .containerShape(shape)
            .background(shape.fill(.background))
    }
    var shape: RoundedRectangle { RoundedRectangle(cornerRadius: 20) }
}

可用版本

iOS 15.0+, iPadOS 15.0+, macOS 12.0+, Mac Catalyst 15.0+, tvOS 15.0+, watchOS 8.0+

相关用法


注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Never containerShape(_:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。