当前位置: 移动技术网 > IT编程>移动开发>IOS > 详解Swift 之clipped是什么如何用

详解Swift 之clipped是什么如何用

2020年05月10日  | 移动技术网IT编程  | 我要评论

12306选座,白尾黑凤头鹦鹉,打屁屁2

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()
      
    }
  }
}

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

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网