目录
目录README.md

KeyValueView

A Color and String KeyValue SwiftUI View

Usage

import KeyValueView

Example

public enum SomeColors: String, Hashable {
    case textColor, backgroundColor, iconColor
}

public enum SomeStrings: String, Hashable {
    case usageDescription
}

public struct SomeView<
    ColorDictionary: ColorProviding,
    StringDictionary: StringProviding
>: KeyValueView where ColorDictionary.ColorKey == SomeColors,
                    StringDictionary.StringKey == SomeStrings {
                    
    public var colorDictionary: ColorDictionary
    public var stringDictionary: StringDictionary
    
    public init(
        colorDictionary: ColorDictionary,
        stringDictionary: StringDictionary
    ) {
        self.colorDictionary = colorDictionary
        self.stringDictionary = stringDictionary
    }
    
    public var body: some View {
        Text(string(forKey: .usageDescription, defaultString: "👋"))
            .foregroundColor(color(forKey: .textColor, defaultColor: .white))
            .background(color(forKey: .backgroundColor, defaultColor: .clear))
    }
}

Using a KeyValueView

Define Colors and Strings

struct SomeColorDictionary: ColorProviding {
    var colors: [SomeColors : UIColor] = [
        .backgroundColor: .orange,
        .textColor: .blue
    ]
}

struct SomeStringDictionary: StringProviding {
    var strings: [SomeStrings : String] = [
        .usageDescription: "import KeyValueView"
    ]
}

Create a KeyValueView

SomeView(
    colorDictionary: SomeColorDictionary(),
    stringDictionary: SomeStringDictionary()
)
关于
33.0 KB
邀请码
    Gitlink(确实开源)
  • 加入我们
  • 官网邮箱:gitlink@ccf.org.cn
  • QQ群
  • QQ群
  • 公众号
  • 公众号

©Copyright 2023 CCF 开源发展委员会
Powered by Trustie& IntelliDE 京ICP备13000930号