clipped()函數(shù)介紹
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.
默認(rèn)情況下,視圖的邊界框架僅用于布局,因此超出框架邊緣的任何內(nèi)容仍然可見。使用clipped(antialiased:)修飾器可以隱藏超出這些邊緣的任何內(nèi)容。
代碼
import SwiftUIstruct 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()          }  }}以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持武林網(wǎng)。
新聞熱點(diǎn)
疑難解答
圖片精選