实例方法
saturation(_:)
调整此视图的色彩饱和度。
声明
func saturation(_ amount: Double) -> some View
返回值
调整此视图饱和度的视图。
参数
amount
应用于此视图的饱和度。
详述
使用颜色饱和度来增加或减少视图中颜色的强度。
下面的示例显示了一系列红色方块,它们的饱和度以 20% 的增量从 0(灰色)增加到 100%(fully-red):
struct Saturation: View {
var body: some View {
HStack {
ForEach(0..<6) {
Color.red.frame(width: 60, height: 60, alignment: .center)
.saturation(Double($0) * 0.2)
.overlay(Text("\(Double($0) * 0.2 * 100, specifier: "%.0f")%"),
alignment: .bottom)
.border(Color.gray)
}
}
}
}
可用版本
iOS 13.0+, iPadOS 13.0+, macOS 10.15+, Mac Catalyst 13.0+, tvOS 13.0+, watchOS 6.0+
相关用法
- Swift Optional safeAreaInset(edge:alignment:spacing:content:)用法及代码示例
- Swift Optional symbolVariant(_:)用法及代码示例
- Swift Optional submitLabel(_:)用法及代码示例
- Swift Optional speechAlwaysIncludesPunctuation(_:)用法及代码示例
- Swift Optional submitScope(_:)用法及代码示例
- Swift Optional scaledToFill()用法及代码示例
- Swift Optional searchCompletion(_:)用法及代码示例
- Swift Optional simultaneousGesture(_:including:)用法及代码示例
- Swift Optional shadow(color:radius:x:y:)用法及代码示例
- Swift Optional sheet(item:onDismiss:content:)用法及代码示例
- Swift Optional scaledToFit()用法及代码示例
- Swift Optional scenePadding(_:)用法及代码示例
- Swift Optional scaleEffect(_:anchor:)用法及代码示例
- Swift Optional scaleEffect(x:y:anchor:)用法及代码示例
- Swift Optional swipeActions(edge:allowsFullSwipe:content:)用法及代码示例
- Swift Optional sheet(isPresented:onDismiss:content:)用法及代码示例
- Swift Optional popover(isPresented:attachmentAnchor:arrowEdge:content:)用法及代码示例
- Swift Optional mask(alignment:_:)用法及代码示例
- Swift Optional listSectionSeparatorTint(_:edges:)用法及代码示例
- Swift Optional badge(_:)用法及代码示例
- Swift Optional fullScreenCover(isPresented:onDismiss:content:)用法及代码示例
- Swift Optional keyboardType(_:)用法及代码示例
- Swift Optional clipShape(_:style:)用法及代码示例
- Swift Optional preferredColorScheme(_:)用法及代码示例
- Swift Optional background(_:ignoresSafeAreaEdges:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Optional saturation(_:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。