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


Swift Never colorMultiply(_:)用法及代碼示例


實例方法

colorMultiply(_:)

向此視圖添加顏色倍增效果。

聲明

func colorMultiply(_ color: Color) -> some View

返回值

具有顏色倍增效果的視圖。

參數

color

偏向此視圖的顏色。

詳述

以下示例並排顯示了同一圖像的兩個版本;左邊是原件,右邊是帶有 colorMultiply(_:) 修飾符的副本,應用了 ShapeStyle/purple


struct InnerCircleView: View {
    var body: some View {
        Circle()
            .fill(Color.green)
            .frame(width: 40, height: 40, alignment: .center)
    }
}


struct ColorMultiply: View {
    var body: some View {
        HStack {
            Color.red.frame(width: 100, height: 100, alignment: .center)
                .overlay(InnerCircleView(), alignment: .center)
                .overlay(Text("Normal")
                             .font(.callout),
                         alignment: .bottom)
                .border(Color.gray)


            Spacer()


            Color.red.frame(width: 100, height: 100, alignment: .center)
                .overlay(InnerCircleView(), alignment: .center)
                .colorMultiply(Color.purple)
                .overlay(Text("Multiply")
                            .font(.callout),
                         alignment: .bottom)
                .border(Color.gray)
        }
        .padding(50)
    }
}

可用版本

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

相關用法


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