欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解Swift 之clipped是什么如何用

程序员文章站 2022-05-17 08:52:49
clipped()函数介绍clips the view to its bounding rectangular frame.将view裁剪成矩形by default, a view's boundin...

clipped()函数介绍

clips the view to its bounding rectangular frame.

将view裁剪成矩形

by default, a view's bounding frame is used only for layout, so any content that extends beyond the edges of the frame is still visible. use the clipped(antialiased:)modifier to hide any content that extends beyond these edges.

默认情况下,视图的边界框架仅用于布局,因此超出框架边缘的任何内容仍然可见。使用clipped(antialiased:)修饰器可以隐藏超出这些边缘的任何内容。

代码

import swiftui

struct productcard: view {
  var body: some view {
    vstack(alignment:.leading,spacing: 0){
      image("circle")
        .resizable()
        .scaledtofit()
        .frame(minwidth:nil,
            idealwidth: nil,
            maxwidth: uiscreen.main.bounds.width,
            minheight: nil,
            idealheight: nil,
            maxheight: 300,
            alignment: .center
      )
      .clipped()
      
    }
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

相关标签: Swift clipped