當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Swift Never scaleEffect(x:y:anchor:)用法及代碼示例


實例方法

scaleEffect(x:y:anchor:)

相對於錨點,按給定的水平和垂直量縮放此視圖的渲染輸出。

聲明

func scaleEffect(
    x: CGFloat = 1.0,
    y: CGFloat = 1.0,
    anchor: UnitPoint = .center
) -> some View

參數

x

表示視圖縮放的水平量的量。默認值為 1.0

y

表示視圖縮放的垂直量的量。默認值為 1.0

anchor

指示縮放操作的起始位置的錨點。

詳述

使用 scaleEffect(x:y:anchor:) 以特定的水平和垂直量將縮放變換應用於視圖。


Image(systemName: "envelope.badge.fill")
    .resizable()
    .frame(width: 100, height: 100, alignment: .center)
    .foregroundColor(Color.red)
    .scaleEffect(x: 0.5, y: 0.5, anchor: .bottomTrailing)
    .border(Color.gray)

可用版本

iOS 13.0+, iPadOS 13.0+, macOS 10.15+, Mac Catalyst 13.0+, tvOS 13.0+, watchOS 6.0+

相關用法


注:本文由純淨天空篩選整理自apple.com大神的英文原創作品 Never scaleEffect(x:y:anchor:)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。